forked from Telodendria/Telodendria
Fix warning about uninitialized variable.
This commit is contained in:
parent
a24c27bf4f
commit
c37d3801b2
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ HttpRequest(HttpRequestMethod method, int flags, unsigned short port, char *host
|
|||
{
|
||||
HttpClientContext *context;
|
||||
|
||||
int sd;
|
||||
int sd = -1;
|
||||
struct addrinfo hints, *res, *res0;
|
||||
int error;
|
||||
|
||||
|
|
Loading…
Reference in a new issue