[NTOSKRNL]
authorPierre Schweitzer <pierre@reactos.org>
Wed, 29 Feb 2012 19:29:03 +0000 (19:29 +0000)
committerPierre Schweitzer <pierre@reactos.org>
Wed, 29 Feb 2012 19:29:03 +0000 (19:29 +0000)
Fix formatting, no code change

svn path=/trunk/; revision=55931

reactos/ntoskrnl/fsrtl/notify.c

index f2b6c82..dda70c2 100644 (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;
 }