mirror of
https://github.com/reactos/reactos.git
synced 2025-07-13 19:44:12 +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 */
|
/* 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 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue