[Cmake-commits] CMake branch, next, updated. v3.0.0-3776-gbd28f78

Clinton Stimpson clinton at elemtech.com
Mon Jun 16 22:27:24 EDT 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  bd28f78ffcbcf3a47055c314acf0f71e41f740fc (commit)
       via  38dbe691414a96ce1e2c6611e2b1fae308003c8f (commit)
       via  9dc88ee951103edd871b446f9a7812ad05579b66 (commit)
      from  294377f70ba9dc12714dda998f32830ab04cd810 (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=bd28f78ffcbcf3a47055c314acf0f71e41f740fc
commit bd28f78ffcbcf3a47055c314acf0f71e41f740fc
Merge: 294377f 38dbe69
Author:     Clinton Stimpson <clinton at elemtech.com>
AuthorDate: Mon Jun 16 22:27:23 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jun 16 22:27:23 2014 -0400

    Merge topic 'encoding-parse-commandline' into next
    
    38dbe691 Encoding: Fix debug asserts parsing command line options with non-ascii chars.
    9dc88ee9 Merge topic 'fix-valgrind-in-path'


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=38dbe691414a96ce1e2c6611e2b1fae308003c8f
commit 38dbe691414a96ce1e2c6611e2b1fae308003c8f
Author:     Clinton Stimpson <clinton at elemtech.com>
AuthorDate: Mon Jun 16 20:25:25 2014 -0600
Commit:     Clinton Stimpson <clinton at elemtech.com>
CommitDate: Mon Jun 16 20:25:25 2014 -0600

    Encoding: Fix debug asserts parsing command line options with non-ascii chars.
    
    With MSVC, isspace() will assert with non-ascii characters.

diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 2e417cb..0fe33d1 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -439,7 +439,7 @@ void cmSystemTools::ParseWindowsCommandLine(const char* command,
       {
       arg.append(backslashes, '\\');
       backslashes = 0;
-      if(isspace(*c))
+      if(*c >= -1 && *c <= 255 && isspace(*c))
         {
         if(in_quotes)
           {

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9dc88ee951103edd871b446f9a7812ad05579b66
commit 9dc88ee951103edd871b446f9a7812ad05579b66
Merge: e278942 58cc3c2
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jun 16 08:54:50 2014 -0400
Commit:     Clinton Stimpson <clinton at elemtech.com>
CommitDate: Mon Jun 16 20:24:38 2014 -0600

    Merge topic 'fix-valgrind-in-path'
    
    58cc3c22 Fix ctest to allow valgrind to show up in the path name of a memcheck tool.


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

Summary of changes:
 Source/cmSystemTools.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list