mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[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:
parent
33cf2c44c5
commit
4d1a8f8f54
1 changed files with 1 additions and 1 deletions
|
@ -566,7 +566,7 @@ FsRtlAllocateOplock(VOID)
|
||||||
_SEH2_FINALLY
|
_SEH2_FINALLY
|
||||||
{
|
{
|
||||||
/* In case of abnormal termination, it means either OPLOCK or FAST_MUTEX allocation failed */
|
/* 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 */
|
/* That FAST_MUTEX, free OPLOCK */
|
||||||
if (Oplock != NULL)
|
if (Oplock != NULL)
|
||||||
|
|
Loading…
Reference in a new issue