- Fix exception handling in MiDoMapped/PoolCopy by fixing a typo in SEH_YIELD usage.
authorAleksey Bragin <aleksey@reactos.org>
Sun, 29 Jun 2008 08:10:18 +0000 (08:10 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Sun, 29 Jun 2008 08:10:18 +0000 (08:10 +0000)
See issue #3408 for more details.

svn path=/trunk/; revision=34172

reactos/ntoskrnl/mm/virtual.c

index b00a9c6..ba0a2eb 100644 (file)
@@ -172,7 +172,7 @@ MiDoMappedCopy(IN PEPROCESS SourceProcess,
             {
                 /* Exit */
                 Status = _SEH_GetExceptionCode();
-                _SEH_YIELD();
+                _SEH_YIELD(return Status);
             }
 
             /* Otherwise, we failed  probably during the move */
@@ -319,7 +319,7 @@ MiDoPoolCopy(IN PEPROCESS SourceProcess,
             {
                 /* Exit */
                 Status = _SEH_GetExceptionCode();
-                _SEH_YIELD();
+                _SEH_YIELD(return Status);
             }
 
             /* Otherwise, we failed  probably during the move */