]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fileconf.cpp
some != NULL checks
[wxWidgets.git] / src / common / fileconf.cpp
index acdc908251636d23872bb7b8b2fb9e28e30b2bb9..d9ab373bdb55eeba77926270031820671039b20d 100644 (file)
@@ -469,11 +469,15 @@ void wxFileConfig::Parse(wxTextFile& file, bool bLocal)
     }
     else {                        // a key
       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;
+          }
         }
 
         pEnd++;