]> git.saurik.com Git - wxWidgets.git/commitdiff
Initialize values (uninitialized variables reported to cause problems on WinME)
authorJulian Smart <julian@anthemion.co.uk>
Tue, 6 Dec 2005 19:07:28 +0000 (19:07 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 6 Dec 2005 19:07:28 +0000 (19:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/registry.cpp

index 37391757287308a5a0f059b0c0c85b2193fa116b..010ff1d301b440a6b94eebee2e23da22d419a68e 100644 (file)
@@ -897,7 +897,7 @@ bool wxRegKey::QueryValue(const wxChar *szValue,
     {
 
         // first get the type and size of the data
-        DWORD dwType, dwSize;
+        DWORD dwType=REG_NONE, dwSize=0;
         m_dwLastError = RegQueryValueEx((HKEY) m_hKey, WXSTRINGCAST szValue, RESERVED,
                                         &dwType, NULL, &dwSize);
         if ( m_dwLastError == ERROR_SUCCESS )