mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 15:27:57 +00:00
Fix warning about uninitialized value
Only reported when using -flto.
This commit is contained in:
parent
a6cd0b08f6
commit
22db3f2c77
@ -2447,7 +2447,7 @@ int ReadHTTP(std::basic_istream<char>& stream, map<string, string>& mapHeadersRe
|
||||
strMessageRet = "";
|
||||
|
||||
// Read status
|
||||
int nProto;
|
||||
int nProto = 0;
|
||||
int nStatus = ReadHTTPStatus(stream, nProto);
|
||||
|
||||
// Read header
|
||||
|
Loading…
Reference in New Issue
Block a user