- Fix exception handling in MiDoMapped/PoolCopy by fixing a typo in SEH_YIELD usage.

See issue #3408 for more details.

svn path=/trunk/; revision=34172
This commit is contained in:
Aleksey Bragin 2008-06-29 08:10:18 +00:00
parent ab5634f252
commit 911fc42a9f

View file

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