|
no real point in that.. unless similar crashes happen in other programs too
Exception code: access violation (continuable) - attempted to write data at 0x00000000
Occurred at IP: 0x004034F8
it 100% happened in the process code.. write data at 0x00000000 is most definately a failed memory allocation.. which is typically caused by a VirtualAlloc call failing
.004034F0: E8DBBB6C00 call .000ACF0D0 --↓1
.004034F5: 83C404 add esp,4
.004034F8: C70648127602 mov d,[esi],002761248
.004034FE: 5E pop esi
.004034FF: C3 retn
so it has to be esi = NULL... strange thing is that code xreferenced from this reads the dword from esi.. so perhaps the memory isn't writable... very odd.. but i'm pretty certain its a game bug / issue.. and not a system one...
__________________
bleh
DO NOT PM me with questions, leave that in the forums...ESPECIALLY if i dont know you...
|