mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +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:
parent
ab5634f252
commit
911fc42a9f
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue