Commit a5facc00 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

ntdll: Initialize pointers to NULL (Coverity).

parent a67b6891
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment