[ros-diffs] [tkreuzer] 44504: Fix number 2

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Thu Dec 10 21:22:02 CET 2009


Author: tkreuzer
Date: Thu Dec 10 01:51:35 2009
New Revision: 44504

URL: http://svn.reactos.org/svn/reactos?rev=44504&view=rev
Log:
Fix number 2

Modified:
    branches/ros-amd64-bringup/reactos/ntoskrnl/ke/i386/usercall.c

Modified: branches/ros-amd64-bringup/reactos/ntoskrnl/ke/i386/usercall.c
URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/ntoskrnl/ke/i386/usercall.c?rev=44504&r1=44503&r2=44504&view=diff
==============================================================================
--- branches/ros-amd64-bringup/reactos/ntoskrnl/ke/i386/usercall.c [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/ntoskrnl/ke/i386/usercall.c [iso-8859-1] Thu Dec 10 01:51:35 2009
@@ -169,7 +169,7 @@
 
         /* Save the exception list */
         Teb = KeGetCurrentThread()->Teb;
-        ExceptionList = Teb->Tib.ExceptionList;
+        ExceptionList = Teb->NtTib.ExceptionList;
 
         /* Jump to user mode */
         *UserEsp = NewStack;
@@ -177,7 +177,7 @@
         if (CallbackStatus != STATUS_CALLBACK_POP_STACK)
         {
             /* Only restore the exception list if we didn't crash in ring 3 */
-            Teb->Tib.ExceptionList = ExceptionList;
+            Teb->NtTib.ExceptionList = ExceptionList;
             CallbackStatus = STATUS_SUCCESS;
         }
         else




More information about the Ros-diffs mailing list