[cmake-commits] king committed cmListFileCache.cxx 1.29 1.30

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Nov 19 13:42:07 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv13985/Source

Modified Files:
	cmListFileCache.cxx 
Log Message:
BUG: ParseFile should return false if there was a parse error.


Index: cmListFileCache.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmListFileCache.cxx,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- cmListFileCache.cxx	1 Aug 2006 15:38:41 -0000	1.29
+++ cmListFileCache.cxx	19 Nov 2007 18:42:05 -0000	1.30
@@ -139,6 +139,10 @@
       this->Functions.insert(this->Functions.begin(),project);
       }
     }
+  if(parseError)
+    {
+    return false;
+    }
   return true;
 }
 



More information about the Cmake-commits mailing list