IOS经常会混合使用C代码,而在C中,对内存的读写是很频繁的操作. 其中,内存越界读写 unsigned char* p =(unsigned char*)malloc(10); unsigned char c = *(p+100) ; free(p); 是一种很容易犯的错误,在大部分情况下,这段代码是不会暴露问题的. 如果越界写内存,比如: unsigned char* p =(unsigned char*)malloc(10); *(p+100) ='c'; free(p); 比如: uns…