windbg Memory access error in 'u ntdll!_allmul'

kd> u ntdll!_allmul

ntdll!_allmul: 7c952207

    ?? ??? ^ Memory access error in 'u ntdll!_allmul'

这种情况   一种解决方案 是 attach 到一个 r3 进程 。。。。然后就行了。。

kd> u ntdll!_allmul
ntdll!_allmul:
7c952207 8b442408        mov     eax,dword ptr [esp+8]
7c95220b 8b4c2410        mov     ecx,dword ptr [esp+10h]
7c95220f 0bc8            or      ecx,eax
7c952211 8b4c240c        mov     ecx,dword ptr [esp+0Ch]
7c952215 7509            jne     ntdll!_allmul+0x19 (7c952220)
7c952217 8b442404        mov     eax,dword ptr [esp+4]
7c95221b f7e1            mul     eax,ecx
7c95221d c21000          ret     10h

你可能感兴趣的:(windbg Memory access error in 'u ntdll!_allmul')