mirror of
https://github.com/curl/curl.git
synced 2026-07-27 18:48:55 +03:00
calling curl_easy_perform() with no URL set, now returns an error as
early as possible
This commit is contained in:
parent
18f044f19d
commit
879c6c5711
1 changed files with 4 additions and 0 deletions
|
|
@ -749,6 +749,10 @@ CURLcode Curl_perform(CURL *curl)
|
|||
bool port=TRUE; /* allow data->use_port to set port to use */
|
||||
char *newurl = NULL; /* possibly a new URL to follow to! */
|
||||
|
||||
if(!data->url)
|
||||
/* we can't do anything wihout URL */
|
||||
return CURLE_URL_MALFORMAT;
|
||||
|
||||
data->followlocation=0; /* reset the location-follow counter */
|
||||
data->bits.this_is_a_follow = FALSE; /* reset this */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue