Windows 7 exception code: 0xc0000409

前端 未结 2 1461
余生分开走
余生分开走 2020-12-30 11:33

I have a C++ windows application that was done by another programmer, that I had to remove one line of code. After rebuilding the application with visual studio 2013 it cras

2条回答
  •  不知归路
    2020-12-30 12:07

    Try to create a crash dump for the application. See this StackOverflow question and the MSDN documentation on how to do that. Once you have the crash dump file, open it in the Visual Studio debugger and you will be able to see the exception and call stack for the exception, which should help.

提交回复
热议问题