Displaying 1 result from an estimated 1 matches for "75d728".
Did you mean:
758728
2001 Dec 11
0
VirtualProtect and app crash: what's your interpretation?
...riable
;
00760D9C push eax
;
; flNewProtect = 4 = PAGE_READWRITE
;
00760D9D push 4
;
; dwSize = size of region to protect = a local variable
;
00760D9F push dword ptr [ebp-14h]
;
; lpAddress = base address of region to protect =
; (*(long *)75D728) + localvar
;
00760DA2 mov eax, ds:dword_75D728
00760DA7 add eax, [ebp-4]
00760DAA push eax
00760DAB call ds:VirtualProtect
00760DB1 test eax, eax
;
; On success go to loc_760DC4
;
00760DB3...