[ros-diffs] [fireball] 34172: - Fix exception handling in MiDoMapped/PoolCopy by fixing a typo in SEH_YIELD usage. See issue #3408 for more details.

fireball at svn.reactos.org fireball at svn.reactos.org
Sun Jun 29 10:10:18 CEST 2008


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=34172&r1=34171&r2=34172&view=diff
==============================================================================
--- 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 */



More information about the Ros-diffs mailing list