Displaying 1 result from an estimated 1 matches for "75f07e".
Did you mean:
  75f07eh
  
2001 Dec 12
0
App crashes and exception handling [Was: Re: VirtualProtect and app crash]
...sed WinDbg to step through the code running under W2K, setting a 
breakpoint at 0x761B10. Running the code, it caught an access violation 
at a place neither wine nor gdb caught in a piece of code that seems 
obviously designed to look for an access violation:
0075F0D7                 mov     eax, 75F07Eh
0075F0DC                 mov     dword_75C5B0, eax
0075F0E1                 mov     dl, [eax]
0075F0E3                 mov     [eax], dl   <- write exception
75F07E is actually the beginning of the procedure containing this code.
The WinDbg debugger caught it, and I told it to continue, not h...