mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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];
|
||||
GUID ClassGuid;
|
||||
ULONG ulLength;
|
||||
LPTSTR DeviceID;
|
||||
LPTSTR DeviceID = NULL;
|
||||
INT ClassImage = 24;
|
||||
CONFIGRET cr;
|
||||
|
||||
|
|
Loading…
Reference in a new issue