mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
fix uninitialized waring so gcc 3.4.3 can compile it
svn path=/trunk/; revision=15294
This commit is contained in:
parent
036efb7e10
commit
efe2391a80
1 changed files with 1 additions and 1 deletions
|
@ -666,7 +666,7 @@ ObCreateObject (IN KPROCESSOR_MODE ObjectAttributesAccessMode OPTIONAL,
|
|||
UNICODE_STRING RemainingPath;
|
||||
POBJECT_HEADER Header;
|
||||
POBJECT_HEADER ParentHeader = NULL;
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = 0;
|
||||
BOOLEAN ObjectAttached = FALSE;
|
||||
PWCHAR NamePtr;
|
||||
PSECURITY_DESCRIPTOR NewSecurityDescriptor = NULL;
|
||||
|
|
Loading…
Reference in a new issue