[NTOSKRNL]
authorEric Kohl <eric.kohl@reactos.org>
Sun, 24 May 2015 14:38:55 +0000 (14:38 +0000)
committerEric Kohl <eric.kohl@reactos.org>
Sun, 24 May 2015 14:38:55 +0000 (14:38 +0000)
IoCreateDevice: Assign SePublicOpenUnrestrictedSd to new devices.

CORE-9176

svn path=/trunk/; revision=67882

reactos/ntoskrnl/io/iomgr/device.c

index 88ea608..ed94332 100644 (file)
@@ -846,14 +846,14 @@ IoCreateDevice(IN PDRIVER_OBJECT DriverObject,
         /* Initialize the name */
         RtlInitUnicodeString(&AutoName, AutoNameBuffer);
         DeviceName = &AutoName;
-   }
+    }
 
     /* Initialize the Object Attributes */
     InitializeObjectAttributes(&ObjectAttributes,
                                DeviceName,
                                OBJ_KERNEL_HANDLE,
                                NULL,
-                               NULL);
+                               SePublicOpenUnrestrictedSd);
 
     /* Honor exclusive flag */
     if (Exclusive) ObjectAttributes.Attributes |= OBJ_EXCLUSIVE;