diff options
Diffstat (limited to 'Source/cmLocalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio10Generator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio10Generator.cxx b/Source/cmLocalVisualStudio10Generator.cxx index d8f35f1..44318f4 100644 --- a/Source/cmLocalVisualStudio10Generator.cxx +++ b/Source/cmLocalVisualStudio10Generator.cxx @@ -31,7 +31,7 @@ class cmVS10XMLParser : public cmXMLParser { if(this->DoGUID ) { - this->GUID.assign(data, length); + this->GUID.assign(data+1, length-2); this->DoGUID = false; } } @@ -112,7 +112,6 @@ void cmLocalVisualStudio10Generator ::ReadAndStoreExternalGUID(const char* name, const char* path) { - cmVS10XMLParser parser; parser.ParseFile(path); std::string guidStoreName = name; |