From 69d5c43dbdd3b01b6dd05faf4f57cd1d58cc1a61 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Thu, 6 Oct 2005 23:04:00 +0000 Subject: [PATCH] fixed uninitialized variable warning svn path=/trunk/; revision=18305 --- reactos/lib/setupapi/devinst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/setupapi/devinst.c b/reactos/lib/setupapi/devinst.c index de524fa44f7..7dd210bd3a3 100644 --- a/reactos/lib/setupapi/devinst.c +++ b/reactos/lib/setupapi/devinst.c @@ -3545,7 +3545,7 @@ SetupDiBuildDriverInfoList( LPWSTR HardwareIDs = NULL; LPWSTR CompatibleIDs = NULL; FILETIME DriverDate; - DWORDLONG DriverVersion; + DWORDLONG DriverVersion = 0; DWORD RequiredSize; BOOL ret = FALSE;