mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
ntdll: Initialize pointers to NULL (Coverity).
This commit is contained in:
parent
a67b689121
commit
a5facc008b
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue