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:
Hervé Poussineau 2007-06-04 14:49:28 +00:00
parent 2a9396bf7f
commit cc07f4e2d7

View file

@ -211,9 +211,17 @@ _KiUserExceptionDispatcher@8:
mov ecx, [esp+4]
mov ebx, [esp]
/* Dispatch the exception */
/* Call the vectored exception handler */
push ecx
push ebx
call _RtlpExecuteVectoredExceptionHandlers@8
/* Check for success */
or al, al
jnz ContinueExecution
/* Dispatch the exception */
sub esp, 8
call _RtlDispatchException@8
/* Check for success */