请看下面的代码片段:
#include <stdio.h>
int main ()
{
FILE * pFile;
pFile = fopen ("c:\\Temp\\test.txt","rb");
if (pFile!=NULL)
{
printf("opened\n");
fclose (pFile);
}
else{
printf("error\n");
}
return 0;
}
如果我编译这个代码片段并运行它,什么都不会失败。如果我在调试模式下执行代码 fopen 失败并显示以下消息:
Thread [1] 0 (Suspended : Signal : SIGSEGV:Segmentation fault)
wtoi64() at 0x77b35eab
wtoi64() at 0x77b35a70
ntdll!RtlpSetUserPreferredUILanguages() at 0x77ba5eff
ntdll!KiRaiseUserExceptionDispatcher() at 0x77b6a3ba
toi64() at 0x77b35a70
msvcrt!malloc() at 0x775c9d45
strcpy_s() at 0x775cf5d3
open_osfhandle() at 0x775d2b18
0x18
0xbf39e545
<...more frames...
开发环境:
Windows 7
Eclipse CDT Juno Service Release 1
MINGW 4.7
编译器设置:
-O0 -g3 -Wall -c -fmessage-length=0
如果我启动调试器并逐步执行每条指令直到 fopen(..),是否有人知道为什么 fopen 会失败?
我期待着你的回答。预先感谢。