[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1745-ga8d88e0

Stephen Kelly steveire at gmail.com
Wed Jan 23 17:48:59 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  a8d88e0d93a554e4637e7417316b388b534fffa9 (commit)
       via  d7e5654bd0b60f68fa1733bc1a8abccb4b42b74c (commit)
      from  d6eeb699b1b1ad4d34840c9559a309b6ba0a7d61 (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=a8d88e0d93a554e4637e7417316b388b534fffa9
commit a8d88e0d93a554e4637e7417316b388b534fffa9
Merge: d6eeb69 d7e5654
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Jan 23 17:48:57 2013 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jan 23 17:48:57 2013 -0500

    Merge topic 'fix-COMPATIBLE_INTERFACE-link-libraries' into next
    
    d7e5654 Assign non-null to top before using it.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d7e5654bd0b60f68fa1733bc1a8abccb4b42b74c
commit d7e5654bd0b60f68fa1733bc1a8abccb4b42b74c
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Jan 23 23:47:59 2013 +0100
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Wed Jan 23 23:47:59 2013 +0100

    Assign non-null to top before using it.

diff --git a/Source/cmGeneratorExpressionDAGChecker.cxx b/Source/cmGeneratorExpressionDAGChecker.cxx
index 819bacd..269211b 100644
--- a/Source/cmGeneratorExpressionDAGChecker.cxx
+++ b/Source/cmGeneratorExpressionDAGChecker.cxx
@@ -114,8 +114,8 @@ bool cmGeneratorExpressionDAGChecker::EvaluatingLinkLibraries()
   const cmGeneratorExpressionDAGChecker *parent = this->Parent;
   while (parent)
     {
-    parent = parent->Parent;
     top = parent;
+    parent = parent->Parent;
     }
 
   const char *prop = top->Property.c_str();

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

Summary of changes:
 Source/cmGeneratorExpressionDAGChecker.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list