几个小时以来,我一直在为此挠头。我正在运行带有 XCode 5 的 Mac OS X 10.8。我收到以下错误:
malloc: *** error for object 0x1006487b8: incorrect checksum for freed object - object was
probably modified after being freed.
*** set a breakpoint in malloc_error_break to debug
不幸的是,object 0x1006487b8
此时已释放,我的调试器不记得那里有什么。
问题是,错误永远不会发生在同一个地方。我只能假设没有正确释放一些内存,然后计算机尝试将其用于其他目的并最终感到困惑。
我的代码使用的是 SDL 2,据我所知,唯一free
的 -like 函数调用以以下形式出现realloc
:
static LGC_Gate* LGC_CreateEmptyGate(){
if (!gates) {
gates = malloc(sizeof(LGC_Gate));
if (!gates)
return NULL;
}
else{
LGC_Gate* tmpgates = realloc(gates, sizeof(LGC_Gate) * (numgates + 1));
if (tmpgates)
gates = tmpgates;
else
return NULL;
}
numgates++;
gates[numgates - 1].id = numgates - 1;
return &(gates[numgates - 1]);
}
gates
是指向门数组的静态文件范围指针,并在文件顶部声明为:
static LGC_Gate* gates = NULL;
numgates
在文件开头初始化为零,表示当前使用的门数。gates
应该总是 size numgates * sizeof(LGC_Gate)
。
我的计划是将用户创建的所有门保存在一个数组中,以便轻松统计它们并立即获得每个门。该LGC_CreateEmptyGate
函数是这样使用的,例如:
LGC_Gate* LGC_InitActGate(LGC_Action act, uint8_t innum, uint8_t outnum){
LGC_Gate* product = LGC_CreateEmptyGate();
if (!product)
return NULL;
product->rule.type = LGC_FUNCTION;
product->rule.act = act;
product->input.used = innum;
product->input.val = 0;
product->output.used = outnum;
product->output.val = 0;
int i;
for (i = 0; i < 8; i++) {
product->inputfrom[i].active = 0;
}
return product;
}
我做错了什么可怕的事情吗?
更新
我已经使用以下代码进行了一些调试:
printf("%d\n", sizeof(LGC_Gate));
LGC_Gate* TestGates[5];
//Go through the gates, initialize each of them, record the value of their ptr,
//and if any are LESS than sizeof(LGC_Gate) apart, report an error.
int gcount;
for (gcount = 0; gcount < 5; gcount++) {
TestGates[gcount] = LGC_InitActGate(LGC_NOR, 2, 1);
printf("%p\n", TestGates[gcount]);
if (gcount < 4) {
if (TestGates[gcount] + sizeof(LGC_Gate) > TestGates[gcount + 1]) {
printf("Error!");
//TestGates[gcount + 1]->id = 4; If this line were uncommented,
// BAD_ACCESS ensues.
}
}
}
令我完全惊讶的是,这实际上输出了一个错误,并且确实在某些指针上崩溃了。更正:错误指针似乎总是第三个。请注意,LGC_InitActGate
调用LGC_InitEmptyGate
一次,并在其剩余时间内简单地复制数据。到底是怎么回事?
更新 2
好吧,我相信我现在已经发现了错误。每次调用 realloc 时,整个内存块可能会或可能不会重新定位,这使得我拥有的 5 个指针数组无用并指向旧的、已释放的内存。这是完全有道理的,但这是一个巨大的错误。我以前应该注意到的。我不知道如何解决这个问题,但感谢我得到的帮助。