0
votes
Debugging a crash after exiting? (After main returned)
what does the stack trace look like? can you provide an example (just strip everything sensitive w/o sacrifying the vital information)?
…
4
votes
Why does my Service crash at DebugBreak() on Vista?
It is crashing because it is a breakpoint exception.
To be on the safe side you need to either check if a debugger is attached:
if(::IsDebuggerPresent()) ::DebugBreak();
…
