mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[MUP] Use _SEH2_AbnormalTermination() instead of _abnormal_termination()
We're already using SEH2 macros, so also use SEH2 functions
This commit is contained in:
parent
2baf7b5220
commit
33cf2c44c5
1 changed files with 2 additions and 2 deletions
|
@ -1248,7 +1248,7 @@ RegisterUncProvider(PDEVICE_OBJECT DeviceObject,
|
|||
}
|
||||
_SEH2_FINALLY
|
||||
{
|
||||
if (_abnormal_termination())
|
||||
if (_SEH2_AbnormalTermination())
|
||||
{
|
||||
Status = STATUS_INVALID_USER_BUFFER;
|
||||
}
|
||||
|
@ -2153,7 +2153,7 @@ CreateRedirectedFile(PIRP Irp,
|
|||
}
|
||||
_SEH2_FINALLY
|
||||
{
|
||||
if (_abnormal_termination())
|
||||
if (_SEH2_AbnormalTermination())
|
||||
{
|
||||
MasterQueryContext->LatestStatus = STATUS_INSUFFICIENT_RESOURCES;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue