我遇到了一个神秘的错误,我不知道为什么。 此代码在失败之前运行多次,并且始终在同一点失败。
这是我的代码:
assert(size > 0);
int* sorted = malloc(size * sizeof(int));
这是我运行它时遇到的错误:
malloc.c:2369: sysmalloc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * (sizeof(size_t))) - 1)) & ~((2 * (sizeof(size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long)old_end & pagemask) == 0)' failed.
我试过打印出尺寸,在这种情况下是 1。 此代码在失败之前使用不同的大小值(包括 1)运行多次。
有人知道我做错了什么吗?
谢谢。
这通常发生在您的代码在之前的某个时间free
无效地址,或者写过分配的内存块的末尾时。通过 valgrind 或其他一些内存分析器运行代码以查看发生这种情况的点。