Fixed possible usage of uninitialized variable.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24683 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Dimitri Schoolwerth
2003-11-28 22:46:27 +00:00
parent 242b7b46ad
commit 56fc3fa5b3
3 changed files with 3 additions and 3 deletions

View File

@@ -913,7 +913,7 @@ wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
int i;
int j;
OSErr theErr;
OSStatus theStatus;
OSStatus theStatus = noErr;
Boolean isDirectory = FALSE;
Str255 theParentPath = "\p";
FSSpec theParentSpec;