]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fileconf.cpp
reuse Clear() instead of duplicating its code in Close()
[wxWidgets.git] / src / common / fileconf.cpp
index c70e7e5a5c457436e1f8479914ef157d59aa6928..d492e6466d0baee4b1ab34db01063b91d0b69f37 100644 (file)
@@ -1160,9 +1160,6 @@ bool wxFileConfig::DeleteAll()
                         m_strLocalFile.c_str());
           return false;
       }
-
-      m_strLocalFile =
-      m_strGlobalFile = wxEmptyString;
   }
 
   Init();
@@ -2030,8 +2027,11 @@ static wxString FilterInEntryName(const wxString& str)
   strResult.Alloc(str.Len());
 
   for ( const wxChar *pc = str.c_str(); *pc != '\0'; pc++ ) {
-    if ( *pc == wxT('\\') )
-      pc++;
+    if ( *pc == wxT('\\') ) {
+      // we need to test it here or we'd skip past the NUL in the loop line
+      if ( *++pc == _T('\0') )
+        break;
+    }
 
     strResult += *pc;
   }