解决方法:
1.通常是有指针越界造成的,仔细检查代码有没有越界的行为。
2.指针在程序运行中位置发了变化,例如指针a,执行了a++操作。
实例:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define SIZE_BYTE 10
int main( void)
{
int i;
char *buff;
buff = (char *)malloc( SIZE_BYTE);
(char *)memset(buff,'a',SIZE_BYTE);
for(i=0;i<SIZE_BYTE;i++)
{
printf("buf[0] = %c\n",*(buff));
buff ++;
}
free( buff);
return 0;
}
执行结果:
buf[0] = a
buf[0] = a
buf[0] = a
buf[0] = a
buf[0] = a
buf[0] = a
buf[0] = a
buf[0] = a
buf[0] = a
buf[0] = a
*** Error in `./test2': free(): invalid pointer: 0x00021012 ***
Aborted
原因是, free()传入的地址不是 malloc 返回的地址,而是这个地址后面的。只有 malloc返回的地址才能free().
————————————————
版权声明:本文为CSDN博主「CaspianSea」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/CaspianSea/article/details/49093319