mirror of
https://github.com/reactos/reactos.git
synced 2025-07-05 08:51:22 +00:00
Reapply r18676/r18677 (dispatch.S part) on w3seek advice.
Fixes vmwinst.exe crash on 2nd stage in qemu svn path=/trunk/; revision=26993
This commit is contained in:
parent
2a9396bf7f
commit
cc07f4e2d7
1 changed files with 9 additions and 1 deletions
|
@ -211,9 +211,17 @@ _KiUserExceptionDispatcher@8:
|
||||||
mov ecx, [esp+4]
|
mov ecx, [esp+4]
|
||||||
mov ebx, [esp]
|
mov ebx, [esp]
|
||||||
|
|
||||||
/* Dispatch the exception */
|
/* Call the vectored exception handler */
|
||||||
push ecx
|
push ecx
|
||||||
push ebx
|
push ebx
|
||||||
|
call _RtlpExecuteVectoredExceptionHandlers@8
|
||||||
|
|
||||||
|
/* Check for success */
|
||||||
|
or al, al
|
||||||
|
jnz ContinueExecution
|
||||||
|
|
||||||
|
/* Dispatch the exception */
|
||||||
|
sub esp, 8
|
||||||
call _RtlDispatchException@8
|
call _RtlDispatchException@8
|
||||||
|
|
||||||
/* Check for success */
|
/* Check for success */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue