Author: fireball
Date: Sun Jun 29 03:10:18 2008
New Revision: 34172
URL:
http://svn.reactos.org/svn/reactos?rev=34172&view=rev
Log:
- Fix exception handling in MiDoMapped/PoolCopy by fixing a typo in SEH_YIELD usage.
See issue #3408 for more details.
Modified:
trunk/reactos/ntoskrnl/mm/virtual.c
Modified: trunk/reactos/ntoskrnl/mm/virtual.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/virtual.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/virtual.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/virtual.c [iso-8859-1] Sun Jun 29 03:10:18 2008
@@ -172,7 +172,7 @@
{
/* Exit */
Status = _SEH_GetExceptionCode();
- _SEH_YIELD();
+ _SEH_YIELD(return Status);
}
/* Otherwise, we failed probably during the move */
@@ -319,7 +319,7 @@
{
/* Exit */
Status = _SEH_GetExceptionCode();
- _SEH_YIELD();
+ _SEH_YIELD(return Status);
}
/* Otherwise, we failed probably during the move */