I encountered a crash, drwtsn log shows exception number 80000003 (hardcoded
breakpoint).
I also have the user dump, but it doesn't give me any clue why the crash
happened.
Can you point me any good document or link about how to trace this kind of
problem?
TIA,
Jo
The other cause is that one of the parameter passed to the function is
wrong. Those are usually non-NULL pointer parameters that is going to
be read/written by the function but the pointer points to a non-
accessible memory or a non-writeable memory.
You'll need to find out the code that calls that function that trigger
the breakpoint exception. You can use Process Explorer to find out the
current execution point of each thread of your application when the
crash occurs (don't close the error dialog yet). Then see the call
stack of each thread and start your debugging based on that
information.