[Cmake-commits] CMake branch, next, updated. v2.8.12.2-7663-gfebff8f
Ben Boeckel
ben.boeckel at kitware.com
Tue Feb 11 15:57:47 EST 2014
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 febff8f368adb484bf6c46af60949f870dd0154b (commit)
via 558ea4a47e78a42dad2f7786ae5cef49203ea2d7 (commit)
from 3f8bfb3b6eb655f46a99601d03a9946a0a991add (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=febff8f368adb484bf6c46af60949f870dd0154b
commit febff8f368adb484bf6c46af60949f870dd0154b
Merge: 3f8bfb3 558ea4a
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Tue Feb 11 15:57:47 2014 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Feb 11 15:57:47 2014 -0500
Merge topic 'dev/custom-parsers' into next
558ea4a4 ELA bcc fixes
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=558ea4a47e78a42dad2f7786ae5cef49203ea2d7
commit 558ea4a47e78a42dad2f7786ae5cef49203ea2d7
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Tue Feb 11 15:55:59 2014 -0500
Commit: Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Tue Feb 11 15:55:59 2014 -0500
ELA bcc fixes
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 795bdf7..7c4aa41 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1031,7 +1031,7 @@ void cmSystemTools::ExpandListArgument(const std::string& arg,
const char* next = c + 1;
if(*next == ';')
{
- newArg.append(last, c);
+ newArg.append(last, c - last);
// Skip over the escape character
last = c = next;
}
@@ -1050,7 +1050,7 @@ void cmSystemTools::ExpandListArgument(const std::string& arg,
// brackets.
if(squareNesting == 0)
{
- newArg.append(last, c);
+ newArg.append(last, c - last);
// Skip over the semicolon
last = c + 1;
if ( !newArg.empty() || emptyArgs )
-----------------------------------------------------------------------
Summary of changes:
Source/cmSystemTools.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list