mirror of
https://github.com/curl/curl.git
synced 2026-08-05 10:16:14 +03:00
Silence warning: empty body in an if-statement
This commit is contained in:
parent
f1343b2f55
commit
9dde0b54a3
3 changed files with 5 additions and 3 deletions
|
|
@ -1714,8 +1714,9 @@ CURLcode Curl_pretransfer(struct SessionHandle *data)
|
|||
data->state.authproxy.want = data->set.proxyauth;
|
||||
|
||||
/* If there is a list of cookie files to read, do it now! */
|
||||
if(data->change.cookielist)
|
||||
if(data->change.cookielist) {
|
||||
Curl_cookie_loadfiles(data);
|
||||
}
|
||||
|
||||
/* Allow data->set.use_port to set which port to use. This needs to be
|
||||
* disabled for example when we follow Location: headers to URLs using
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue