我对 Ubuntu 上的 glibc 有一个非常奇怪的问题。
示例程序 test.cpp:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
bool abc(string unitstr,int *data)
{
}
int main(int argc,char *argv[])
{
int *dd3 = new int(8);
dd3[0]=1;dd3[1]=2;dd3[2]=3;dd3[3]=4;
dd3[4]=5;dd3[5]=6;dd3[6]=7;dd3[7]=8;
abc("sss",dd3);
return 1;
}
编译并运行:
g++ test.cpp
a.out
结果:
a.out: malloc.c:2451: 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.
Abort (core dumped)