]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed bug in handling value names with escaped chars
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 15 Feb 2000 14:08:37 +0000 (14:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 15 Feb 2000 14:08:37 +0000 (14:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6036 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fileconf.cpp

index 1ee849986d80b72977611516eab6a9d80d032db0..d9ab373bdb55eeba77926270031820671039b20d 100644 (file)
@@ -468,20 +468,22 @@ void wxFileConfig::Parse(wxTextFile& file, bool bLocal)
       }
     }
     else {                        // a key
-      size_t count = 0;
       const wxChar *pEnd = pStart;
-      while ( *pEnd != wxT('=') && !wxIsspace(*pEnd) ) {
+      while ( *pEnd && *pEnd != wxT('=') && !wxIsspace(*pEnd) ) {
         if ( *pEnd == wxT('\\') ) {
           // next character may be space or not - still take it because it's
-          // quoted
+          // quoted (unless there is nothing)
           pEnd++;
+          if ( !*pEnd ) {
+            // the error message will be given below anyhow
+            break;
+          }
         }
 
-        count++;
         pEnd++;
       }
 
-      wxString strKey(FilterInEntryName(wxString(pStart, count)));
+      wxString strKey(FilterInEntryName(wxString(pStart, pEnd)));
 
       // skip whitespace
       while ( isspace(*pEnd) )