mirror of
https://github.com/reactos/reactos.git
synced 2025-05-27 13:08:23 +00:00
[NTOS] When checking something for NULL, let's initialize it to NULL...
This commit is contained in:
parent
b17e8a5e3c
commit
ec5c0c926b
1 changed files with 1 additions and 1 deletions
|
@ -655,7 +655,7 @@ IopSetServiceEnumData(PDEVICE_NODE DeviceNode)
|
||||||
UNICODE_STRING EnumKeyName;
|
UNICODE_STRING EnumKeyName;
|
||||||
UNICODE_STRING ValueName;
|
UNICODE_STRING ValueName;
|
||||||
PKEY_VALUE_FULL_INFORMATION KeyValueInformation;
|
PKEY_VALUE_FULL_INFORMATION KeyValueInformation;
|
||||||
HANDLE ServiceKey = NULL, ServiceEnumKey;
|
HANDLE ServiceKey = NULL, ServiceEnumKey = NULL;
|
||||||
ULONG Disposition;
|
ULONG Disposition;
|
||||||
ULONG Count = 0, NextInstance = 0;
|
ULONG Count = 0, NextInstance = 0;
|
||||||
WCHAR ValueBuffer[6];
|
WCHAR ValueBuffer[6];
|
||||||
|
|
Loading…
Reference in a new issue