]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/debugrpt.cpp
Incomplete setup build fix.
[wxWidgets.git] / src / common / debugrpt.cpp
index 2f7a5e602b11341b0ea9a944d307b7ba9dae4435..42879854d244d30632a5969fa3e5d5665a0c2ed9 100644 (file)
@@ -329,8 +329,8 @@ bool wxDebugReport::DoAddLoadedModules(wxXmlNode *nodeModules)
         if ( !path.empty() )
             nodeModule->AddProperty(_T("path"), path);
 
-        void *addr;
-        size_t len;
+        void *addr = NULL;
+        size_t len = 0;
         if ( info.GetAddress(&addr, &len) )
         {
             HexProperty(nodeModule, _T("address"), (unsigned long)addr);