From 17b0ab5b83b332087cef10c2fa99bbc6bc2b0ce5 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Sat, 22 Oct 2005 14:35:07 +0000 Subject: [PATCH] don't forget to adjust the stack pointer svn path=/trunk/; revision=18677 --- reactos/lib/ntdll/main/i386/dispatch.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/ntdll/main/i386/dispatch.S b/reactos/lib/ntdll/main/i386/dispatch.S index 4389e931021..289a435cdc8 100644 --- 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] 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 */