https://git.reactos.org/?p=reactos.git;a=commitdiff;h=33cf2c44c53bce1bc3a09e9741bfb97234671df9

commit 33cf2c44c53bce1bc3a09e9741bfb97234671df9
Author:     Hervé Poussineau <hpous...@reactos.org>
AuthorDate: Sun Apr 7 18:59:13 2019 +0200
Commit:     Hervé Poussineau <hpous...@reactos.org>
CommitDate: Sun Apr 7 19:28:18 2019 +0200

    [MUP] Use _SEH2_AbnormalTermination() instead of _abnormal_termination()
    
    We're already using SEH2 macros, so also use SEH2 functions
---
 drivers/filesystems/mup/mup.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/filesystems/mup/mup.c b/drivers/filesystems/mup/mup.c
index 64a277a465..dfc4e71cf9 100644
--- a/drivers/filesystems/mup/mup.c
+++ b/drivers/filesystems/mup/mup.c
@@ -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;
             }

Reply via email to