mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
- 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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user