summaryrefslogtreecommitdiff
path: root/Source/cmMakeDepend.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-02-14 12:26:49 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2001-02-14 12:26:49 -0500
commit0adb5237bdcf4ff7d782374de5cbfe3dc5463fab (patch)
tree778023795de6a0151add6becab3197f6c3fb32cd /Source/cmMakeDepend.cxx
parent21b18581bd7da49c80d6806b0f3e83ea0af2b076 (diff)
downloadcmake-0adb5237bdcf4ff7d782374de5cbfe3dc5463fab.tar.gz
ENH: fix depend segfault
Diffstat (limited to 'Source/cmMakeDepend.cxx')
-rw-r--r--Source/cmMakeDepend.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmMakeDepend.cxx b/Source/cmMakeDepend.cxx
index d2f7069321..3150d8cf57 100644
--- a/Source/cmMakeDepend.cxx
+++ b/Source/cmMakeDepend.cxx
@@ -241,6 +241,10 @@ void cmDependInformation::RemoveDuplicateIndices()
// add the depend information from info to the m_Indices varible of this class.
void cmDependInformation::MergeInfo(cmDependInformation* info)
{
+ if(this == info)
+ {
+ return;
+ }
std::vector<int>::iterator i = info->m_Indices.begin();
for(; i!= info->m_Indices.end(); ++i)
{