add missing error check
Modified: trunk/reactos/lib/rtl/bootdata.c

Modified: trunk/reactos/lib/rtl/bootdata.c
--- trunk/reactos/lib/rtl/bootdata.c	2005-11-25 15:36:14 UTC (rev 19556)
+++ trunk/reactos/lib/rtl/bootdata.c	2005-11-25 15:57:47 UTC (rev 19557)
@@ -230,6 +230,10 @@
                                          0,
                                          0,
                                          &LocalSystemSid);
+    if (!NT_SUCCESS(Status))
+    {
+        goto Cleanup;
+    }
 
     /* check if the Administrators are the owner and at least a not-NULL DACL
        is present */