ntdll: Initialize pointers to NULL (Coverity).

oldstable
Marcus Meissner 2007-05-22 21:33:27 +01:00 committed by Alexandre Julliard
parent a67b689121
commit a5facc008b
1 changed files with 2 additions and 2 deletions

View File

@ -1559,8 +1559,8 @@ NTSTATUS WINAPI NtSetSecurityObject(HANDLE Handle,
{
NTSTATUS status;
struct security_descriptor sd;
PACL dacl, sacl;
PSID owner, group;
PACL dacl = NULL, sacl = NULL;
PSID owner = NULL, group = NULL;
BOOLEAN defaulted, present;
DWORD revision;
SECURITY_DESCRIPTOR_CONTROL control;