[Cmake-commits] CMake branch, next, updated. v3.6.1-1223-g5afd0cb

Brad King brad.king at kitware.com
Wed Aug 10 13:20:58 EDT 2016


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  5afd0cbd9173fde8a7c73c2810a44d0e76c4a294 (commit)
       via  934a2ecf613e22360ae0aac25294a79a7acab112 (commit)
      from  b2d8050a9bc4ade6a4ca5b41af91c61cb1bd33ab (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5afd0cbd9173fde8a7c73c2810a44d0e76c4a294
commit 5afd0cbd9173fde8a7c73c2810a44d0e76c4a294
Merge: b2d8050 934a2ec
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Aug 10 13:20:57 2016 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Aug 10 13:20:57 2016 -0400

    Merge topic 'autogen-same-name' into next
    
    934a2ecf fixup! cmCryptoHash: Return byte vector from internal Finalize method


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=934a2ecf613e22360ae0aac25294a79a7acab112
commit 934a2ecf613e22360ae0aac25294a79a7acab112
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Aug 10 13:20:12 2016 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Aug 10 13:20:22 2016 -0400

    fixup! cmCryptoHash: Return byte vector from internal Finalize method

diff --git a/Source/cmCryptoHash.cxx b/Source/cmCryptoHash.cxx
index ec885d8..9bd07a3 100644
--- a/Source/cmCryptoHash.cxx
+++ b/Source/cmCryptoHash.cxx
@@ -158,7 +158,7 @@ std::vector<unsigned char> cmCryptoHashMD5::Finalize()
   }                                                                           \
   std::vector<unsigned char> cmCryptoHash##SHA::Finalize()                    \
   {                                                                           \
-    std::vector<unsigned char> hash(SHA##_DIGEST_STRING_LENGTH, 0);           \
+    std::vector<unsigned char> hash(SHA##_DIGEST_LENGTH, 0);                  \
     SHA##_Final(&hash[0], this->SHA);                                         \
     return hash;                                                              \
   }

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list