COMP: Remove warning on optimized build
This commit is contained in:
parent
fbaead2a09
commit
3b3dd31bd4
@ -379,7 +379,7 @@ int Curl_resolv(struct connectdata *conn,
|
|||||||
CURLcode result;
|
CURLcode result;
|
||||||
|
|
||||||
/* default to failure */
|
/* default to failure */
|
||||||
int rc = CURLRESOLV_ERROR;
|
int rc;
|
||||||
*entry = NULL;
|
*entry = NULL;
|
||||||
|
|
||||||
#ifdef HAVE_SIGSETJMP
|
#ifdef HAVE_SIGSETJMP
|
||||||
@ -391,6 +391,7 @@ int Curl_resolv(struct connectdata *conn,
|
|||||||
return CURLRESOLV_ERROR;
|
return CURLRESOLV_ERROR;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
rc = CURLRESOLV_ERROR;
|
||||||
|
|
||||||
/* Create an entry id, based upon the hostname and port */
|
/* Create an entry id, based upon the hostname and port */
|
||||||
entry_id = create_hostcache_id(hostname, port);
|
entry_id = create_hostcache_id(hostname, port);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user