curl, bzip2: Suppress warnings by setting initial value
Silence clang -Wsometimes-uninitialized warnings.
This commit is contained in:
parent
cb4ec606a9
commit
af0051f48a
|
@ -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;
|
||||||
|
|
||||||
/*--
|
/*--
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue