mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
don't forget to adjust the stack pointer
svn path=/trunk/; revision=18677
This commit is contained in:
parent
6b3c8a5f9a
commit
17b0ab5b83
1 changed files with 2 additions and 2 deletions
|
@ -141,10 +141,9 @@ _KiUserExceptionDispatcher@8:
|
|||
mov ecx, [esp+4]
|
||||
mov ebx, [esp]
|
||||
|
||||
/* Call the vectored exception handler */
|
||||
push ecx
|
||||
push ebx
|
||||
|
||||
/* Call the vectored exception handler */
|
||||
call _RtlpExecuteVectoredExceptionHandlers@8
|
||||
|
||||
/* Check for success */
|
||||
|
@ -152,6 +151,7 @@ _KiUserExceptionDispatcher@8:
|
|||
jnz ContinueExecution
|
||||
|
||||
/* Dispatch the exception */
|
||||
sub esp, 8
|
||||
call _RtlDispatchException@8
|
||||
|
||||
/* Check for success */
|
||||
|
|
Loading…
Reference in a new issue