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