int test_malloc(void **ptr, size_t size)
{
(*ptr) = malloc(size);
return 0;
}
int test_app()
{
char *data = NULL;
int ret = 0;
ret = test_malloc((void **)&data, 100);
}
编译器:gcc 4.1.2
其中,我正在使用 -O2 和 -Wall ,我认为它们正在打开一些检查这一点的选项。