Here are simple steps:
1) Run the application under Windbg
C> Windbg MyApp.exe
2) In Windbg, run below commands. The command sxe sets exception enabled.
0:000> sxe ld:suspect.dll
0:000> g
3) When the application hits the DLL, the application will stop and you can check callstack as below:
0:004> kp
The result of k command (which is callstack) can provide some clues of what's going on.
No comments:
Post a Comment