mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 14:34:57 +08: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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user