mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 03:03:22 -03:00
Fix warning about uninitialized value
Only reported when using -flto.
This commit is contained in:
parent
a6cd0b08f6
commit
22db3f2c77
1 changed files with 1 additions and 1 deletions
|
@ -2447,7 +2447,7 @@ int ReadHTTP(std::basic_istream<char>& stream, map<string, string>& mapHeadersRe
|
||||||
strMessageRet = "";
|
strMessageRet = "";
|
||||||
|
|
||||||
// Read status
|
// Read status
|
||||||
int nProto;
|
int nProto = 0;
|
||||||
int nStatus = ReadHTTPStatus(stream, nProto);
|
int nStatus = ReadHTTPStatus(stream, nProto);
|
||||||
|
|
||||||
// Read header
|
// Read header
|
||||||
|
|
Loading…
Add table
Reference in a new issue