projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64b5d11
)
Call the correct user mode dispatch function in KiDispatchException. The bug was...
author
Hartmut Birr
<osexpert@googlemail.com>
Fri, 26 Aug 2005 13:06:24 +0000
(13:06 +0000)
committer
Hartmut Birr
<osexpert@googlemail.com>
Fri, 26 Aug 2005 13:06:24 +0000
(13:06 +0000)
svn path=/trunk/; revision=17558
reactos/ntoskrnl/ke/catch.c
patch
|
blob
|
history
diff --git
a/reactos/ntoskrnl/ke/catch.c
b/reactos/ntoskrnl/ke/catch.c
index
cb40d20
..
c51765c
100644
(file)
--- a/
reactos/ntoskrnl/ke/catch.c
+++ b/
reactos/ntoskrnl/ke/catch.c
@@
-161,7
+161,7
@@
KiDispatchException(PEXCEPTION_RECORD ExceptionRecord,
DPRINT1("User-mode stack was invalid. Terminating target thread\n");
}
/* Set EIP to the User-mode Dispathcer */
- Tf->Eip = (ULONG)Ke
Raise
UserExceptionDispatcher;
+ Tf->Eip = (ULONG)KeUserExceptionDispatcher;
return;
}