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/ntoskr... ============================================================================== --- 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