[NTOS:FSRTL] Use _SEH2_AbnormalTermination() instead of _abnormal_termination()

We're already using SEH2 macros, so also use SEH2 functions
This commit is contained in:
Hervé Poussineau 2019-04-07 18:59:36 +02:00
parent 33cf2c44c5
commit 4d1a8f8f54

View file

@ -566,7 +566,7 @@ FsRtlAllocateOplock(VOID)
_SEH2_FINALLY
{
/* In case of abnormal termination, it means either OPLOCK or FAST_MUTEX allocation failed */
if (_abnormal_termination())
if (_SEH2_AbnormalTermination())
{
/* That FAST_MUTEX, free OPLOCK */
if (Oplock != NULL)