Avoid uninitialized variable warnings.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2005-03-05 16:13:55 +00:00
parent dad285d71f
commit 80f7ea17cb

View File

@@ -340,8 +340,8 @@ wxDynamicLibraryDetailsArray wxDynamicLibrary::ListLoaded()
{
// details of the module currently being parsed
wxString pathCur;
unsigned long startCur,
endCur;
unsigned long startCur = 0,
endCur = 0;
char path[1024];
char buf[1024];