curl, bzip2: Suppress warnings by setting initial value

Silence clang -Wsometimes-uninitialized warnings.
This commit is contained in:
Sean McBride 2013-09-19 15:07:51 -04:00 committed by Brad King
parent cb4ec606a9
commit af0051f48a
2 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ static
void sendMTFValues ( EState* s ) void sendMTFValues ( EState* s )
{ {
Int32 v, t, i, j, gs, ge, totc, bt, bc, iter; 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; Int32 nGroups, nBytes;
/*-- /*--

View File

@ -763,7 +763,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
struct Curl_message *msg = NULL; struct Curl_message *msg = NULL;
bool connected; bool connected;
bool async; bool async;
bool protocol_connect; bool protocol_connect = 0;
bool dophase_done; bool dophase_done;
bool done; bool done;
CURLMcode result = CURLM_OK; CURLMcode result = CURLM_OK;