[Cmake-commits] CMake branch, next, updated. v2.8.4-1689-g59d4823

Bill Hoffman bill.hoffman at kitware.com
Mon Jun 6 16:43:23 EDT 2011


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  59d48239b952a381ff7001427a7b48280a1c864f (commit)
       via  dd52fc309d37e4d3835a985e4a85c843b90cf9e6 (commit)
      from  d7739d440f74f1284ac1a269f8174fb632df1dfe (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=59d48239b952a381ff7001427a7b48280a1c864f
commit 59d48239b952a381ff7001427a7b48280a1c864f
Merge: d7739d4 dd52fc3
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Mon Jun 6 16:43:21 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jun 6 16:43:21 2011 -0400

    Merge topic 'fix_leak' into next
    
    dd52fc3 Fix a memory leak.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=dd52fc309d37e4d3835a985e4a85c843b90cf9e6
commit dd52fc309d37e4d3835a985e4a85c843b90cf9e6
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Mon Jun 6 16:41:17 2011 -0400
Commit:     Bill Hoffman <bill.hoffman at kitware.com>
CommitDate: Mon Jun 6 16:41:17 2011 -0400

    Fix a memory leak.

diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx
index bad26c5..56f6630 100644
--- a/Source/CTest/cmCTestTestHandler.cxx
+++ b/Source/CTest/cmCTestTestHandler.cxx
@@ -1936,6 +1936,7 @@ void cmCTestTestHandler::SetTestsToRunInformation(const char* in)
     fin.getline(buff, filelen);
     buff[fin.gcount()] = 0;
     this->TestsToRunString = buff;
+    delete [] buff;
     }
 }
 

-----------------------------------------------------------------------

Summary of changes:
 Source/CTest/cmCTestTestHandler.cxx |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list