mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[DEVMGMT]
Don't use uninitialized memory address when calling InsertIntoTreeView() svn path=/trunk/; revision=58710
This commit is contained in:
parent
98c1071a78
commit
3a1a8fa071
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ AddDeviceToTree(HWND hTreeView,
|
||||||
TCHAR ClassGuidString[MAX_GUID_STRING_LEN];
|
TCHAR ClassGuidString[MAX_GUID_STRING_LEN];
|
||||||
GUID ClassGuid;
|
GUID ClassGuid;
|
||||||
ULONG ulLength;
|
ULONG ulLength;
|
||||||
LPTSTR DeviceID;
|
LPTSTR DeviceID = NULL;
|
||||||
INT ClassImage = 24;
|
INT ClassImage = 24;
|
||||||
CONFIGRET cr;
|
CONFIGRET cr;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue