1に設定して有効MALLOC_CHECK_
にしました(2と3でも試しました)が、次のc ++プログラムで問題が報告されていません。
int n = atoi(argv[1]);
std::cout<<"n = "<<n<<std::endl;
char *buf = new char[n];
for (int i = 0;i < n*n; i++)
{
buf++;
*buf = 'x';
}
std::cout<<"done"<<std::endl;
ここで何か不足していますか?