[NTOSKRNL]

Fix formatting, no code change

svn path=/trunk/; revision=55931
This commit is contained in:
Pierre Schweitzer 2012-02-29 19:29:03 +00:00
parent 256540b703
commit 4c30c5549a

View file

@ -208,15 +208,15 @@ FsRtlNotifyCleanup(IN PNOTIFY_SYNC NotifySync,
}
_SEH2_FINALLY
{
/* Release fast mutex */
FsRtlNotifyReleaseFastMutex(RealNotifySync);
/* Release fast mutex */
FsRtlNotifyReleaseFastMutex(RealNotifySync);
/* If the subject security context was captured, release and free it */
if (SubjectContext)
{
SeReleaseSubjectContext(SubjectContext);
ExFreePool(SubjectContext);
}
/* If the subject security context was captured, release and free it */
if (SubjectContext)
{
SeReleaseSubjectContext(SubjectContext);
ExFreePool(SubjectContext);
}
}
_SEH2_END;
}