projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b3c8a5
)
don't forget to adjust the stack pointer
author
Thomas Bluemel
<thomas@reactsoft.com>
Sat, 22 Oct 2005 14:35:07 +0000
(14:35 +0000)
committer
Thomas Bluemel
<thomas@reactsoft.com>
Sat, 22 Oct 2005 14:35:07 +0000
(14:35 +0000)
svn path=/trunk/; revision=18677
reactos/lib/ntdll/main/i386/dispatch.S
patch
|
blob
|
history
diff --git
a/reactos/lib/ntdll/main/i386/dispatch.S
b/reactos/lib/ntdll/main/i386/dispatch.S
index
4389e93
..
289a435
100644
(file)
--- a/
reactos/lib/ntdll/main/i386/dispatch.S
+++ b/
reactos/lib/ntdll/main/i386/dispatch.S
@@
-141,10
+141,9
@@
_KiUserExceptionDispatcher@8:
mov ecx, [esp+4]
\r
mov ebx, [esp]
\r
\r
+ /* Call the vectored exception handler */
\r
push ecx
\r
push ebx
\r
-
\r
- /* Call the vectored exception handler */
\r
call _RtlpExecuteVectoredExceptionHandlers@8
\r
\r
/* Check for success */
\r
@@
-152,6
+151,7
@@
_KiUserExceptionDispatcher@8:
jnz ContinueExecution
\r
\r
/* Dispatch the exception */
\r
+ sub esp, 8
\r
call _RtlDispatchException@8
\r
\r
/* Check for success */
\r