[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4254-g49f4280
Brad King
brad.king at kitware.com
Thu Sep 19 15:54:48 EDT 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 49f428046ce0ba1a2729afe0b2d1045e765aaccc (commit)
via c4fdba4cca76fe8169bf085cbebd1d6d9f4d7a30 (commit)
from 34056101e23c20d1bbe8ba870b46c91dd635abe4 (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=49f428046ce0ba1a2729afe0b2d1045e765aaccc
commit 49f428046ce0ba1a2729afe0b2d1045e765aaccc
Merge: 3405610 c4fdba4
Author: Brad King <brad.king at kitware.com>
AuthorDate: Thu Sep 19 15:54:35 2013 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Sep 19 15:54:35 2013 -0400
Merge topic 'clang-warnings' into next
c4fdba4 Suppressed warnings by setting initial value
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c4fdba4cca76fe8169bf085cbebd1d6d9f4d7a30
commit c4fdba4cca76fe8169bf085cbebd1d6d9f4d7a30
Author: Sean McBride <sean at rogue-research.com>
AuthorDate: Thu Sep 19 15:07:51 2013 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Thu Sep 19 15:48:57 2013 -0400
Suppressed warnings by setting initial value
Silences clang -Wsometimes-uninitialized warnings
diff --git a/Utilities/cmbzip2/compress.c b/Utilities/cmbzip2/compress.c
index 7d9b3da..feea233 100644
--- a/Utilities/cmbzip2/compress.c
+++ b/Utilities/cmbzip2/compress.c
@@ -239,7 +239,7 @@ static
void sendMTFValues ( EState* s )
{
Int32 v, t, i, j, gs, ge, totc, bt, bc, iter;
- Int32 nSelectors, alphaSize, minLen, maxLen, selCtr;
+ Int32 nSelectors = 0, alphaSize, minLen, maxLen, selCtr;
Int32 nGroups, nBytes;
/*--
diff --git a/Utilities/cmcurl/multi.c b/Utilities/cmcurl/multi.c
index b501f29..869d568 100644
--- a/Utilities/cmcurl/multi.c
+++ b/Utilities/cmcurl/multi.c
@@ -763,7 +763,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
struct Curl_message *msg = NULL;
bool connected;
bool async;
- bool protocol_connect;
+ bool protocol_connect = 0;
bool dophase_done;
bool done;
CURLMcode result = CURLM_OK;
-----------------------------------------------------------------------
Summary of changes:
Utilities/cmbzip2/compress.c | 2 +-
Utilities/cmcurl/multi.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list