仅当我在“免费”(发布)中使用 WinDDK nmake 编译器构建时才会出现此错误,该编译器执行优化。我无法在“已检查”构建或使用 VS 编译中重现此问题。
这是我的代码中发生的事情的伪代码:
main()
{
//variable init and other code
fprintf(log, "pre nullValue: %lu\n", NULL); //printf added for debugging
otherFunc();
funcWithError(str1, str2, NULL);
fprintf(log, "post nullValue: %lu\n", NULL);
fprintf(log, "post2 nullValue: %lu, %lu, %lu\n", NULL, 0, NULL);
}
BOOL otherFunc()
{
//variable init and other code
callToDll();
//...doing stuff
libusb_usb_open(var1); //If I remove this line there is no problem!!
//...doing more stuff
}
BOOL funcWithError(char* s1, char* s2, FUNC_PTR fp)
{
fprintf(log, "inFunc nullValue: %lu, %lu\n", NULL, fp);
if(fp != NULL)
return FALSE; //This line is being executed erroneously!!
}
日志输出:
pre nullValue: 0
inFunc nullValue: 0, 251208
post nullValue: 251208
post2 nullValue: 251208, 251208, 251208
注意:每次程序运行时重复出现的数字(251208)都是不同的数字
只需更改一行即可修复/导致它。这是libusb usb_open调用。
- 最终我的问题是弄清楚如何解决这个问题(我无法避免那个电话)
- 但只是在堆栈/内存管理级别上,怎么可能让 NULL 不为零并且将文字值 '0' 打印为非零?
让我知道其他信息可能会有所帮助...