summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSVN.h
diff options
context:
space:
mode:
authorNils Gladitz <nilsgladitz@gmail.com>2016-09-12 16:29:08 (GMT)
committerNils Gladitz <nilsgladitz@gmail.com>2016-09-12 17:40:13 (GMT)
commitb35311ca44b7e8b40cc48aaac6cefbe8ca4ddba8 (patch)
treea07aec1e48d8be9f4ca323a8c4ee418f2c05c3c7 /Source/CTest/cmCTestSVN.h
parenta7305ef00a70518f7abb66211ef09b0ca6d4af71 (diff)
downloadCMake-b35311ca44b7e8b40cc48aaac6cefbe8ca4ddba8.zip
CMake-b35311ca44b7e8b40cc48aaac6cefbe8ca4ddba8.tar.gz
CMake-b35311ca44b7e8b40cc48aaac6cefbe8ca4ddba8.tar.bz2
CTestSVN: Fix segfault when CTEST_UPDATE_VERSION_ONLY is enabled
Before the change the list of externals was queried only before the svn update. With the change the list is queried both before and after. This should also be more accurate since the list of externals might change during the update.
Diffstat (limited to 'Source/CTest/cmCTestSVN.h')
-rw-r--r--Source/CTest/cmCTestSVN.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestSVN.h b/Source/CTest/cmCTestSVN.h
index 6f2374d..2301b10 100644
--- a/Source/CTest/cmCTestSVN.h
+++ b/Source/CTest/cmCTestSVN.h
@@ -86,7 +86,7 @@ private:
SVNInfo* RootInfo;
std::string LoadInfo(SVNInfo& svninfo);
- void LoadExternals();
+ void LoadRepositories();
void LoadModifications() CM_OVERRIDE;
void LoadRevisions() CM_OVERRIDE;
void LoadRevisions(SVNInfo& svninfo);