Can anyone tell me what does the crash on second line mean?
mov ecx,[eax+0x14]
mov eax,[ecx]
test eax,eax
I got a crash on second line.
Printable View
Can anyone tell me what does the crash on second line mean?
mov ecx,[eax+0x14]
mov eax,[ecx]
test eax,eax
I got a crash on second line.
The most evident answer is that after first line is executed ecx register contains pointer of unacceptable for reading data, for example ecx is 0.
Better yet, what are you doing that requires assembly? Can't you get it out of assembler and into something else?