[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1705-ga29475a
Stephen Kelly
steveire at gmail.com
Mon Jan 21 03:04:55 EST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via a29475a36e8471c774b83980103d4e088703a291 (commit)
via ba1f498da8b4692344bf8c911f4799a741da7e8a (commit)
from b54c10d333b33b61f14bde589fd40913524b5391 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a29475a36e8471c774b83980103d4e088703a291
commit a29475a36e8471c774b83980103d4e088703a291
Merge: b54c10d ba1f498
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Mon Jan 21 03:04:52 2013 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jan 21 03:04:52 2013 -0500
Merge topic 'fix-COMPATIBLE_INTERFACE-properties' into next
ba1f498 Plug memory leak.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ba1f498da8b4692344bf8c911f4799a741da7e8a
commit ba1f498da8b4692344bf8c911f4799a741da7e8a
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Mon Jan 21 09:04:24 2013 +0100
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Mon Jan 21 09:04:24 2013 +0100
Plug memory leak.
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 8a39424..2600db5 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -1520,6 +1520,12 @@ void cmTarget::ClearLinkMaps()
this->Internal->LinkImplMap.clear();
this->Internal->LinkInterfaceMap.clear();
this->Internal->LinkClosureMap.clear();
+ for (cmTargetLinkInformationMap::const_iterator it
+ = this->LinkInformation.begin();
+ it != this->LinkInformation.end(); ++it)
+ {
+ delete it->second;
+ }
this->LinkInformation.clear();
}
-----------------------------------------------------------------------
Summary of changes:
Source/cmTarget.cxx | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list