Unverified Commit aa1f1d48 authored by Romain Geissler's avatar Romain Geissler Committed by Daniel Stenberg
Browse files

Curl_resolv: fix a gcc -Werror=maybe-uninitialized warning

Closes #3562
parent 61496154
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -543,7 +543,7 @@ int Curl_resolv(struct connectdata *conn,
    /* The entry was not in the cache. Resolve it to IP address */

    Curl_addrinfo *addr;
    int respwait;
    int respwait = 0;

    /* Check what IP specifics the app has requested and if we can provide it.
     * If not, bail out. */