mirror of
https://github.com/curl/curl.git
synced 2026-07-24 02:37:18 +03:00
tool_operhlp: avoid NULL to %s
If the filename allocation fails. Reported-by: Gao Liyou Ref: #21825 Closes #21836
This commit is contained in:
parent
7d2382ebfa
commit
b825417043
1 changed files with 5 additions and 2 deletions
|
|
@ -175,6 +175,8 @@ out:
|
|||
return result;
|
||||
}
|
||||
|
||||
#define DEFAULT_FILENAME "curl_response"
|
||||
|
||||
/* Extracts the name portion of the URL.
|
||||
* Returns a pointer to a heap-allocated string or NULL if
|
||||
* no name part, at location indicated by first argument.
|
||||
|
|
@ -218,8 +220,9 @@ CURLcode get_url_file_name(char **filename, const char *url, SANITIZEcode *sc)
|
|||
}
|
||||
else {
|
||||
/* no slash => empty string, use default */
|
||||
*filename = curlx_strdup("curl_response");
|
||||
warnf("No remote filename, uses \"%s\"", *filename);
|
||||
*filename = curlx_strdup(DEFAULT_FILENAME);
|
||||
if(*filename)
|
||||
warnf("No remote filename, uses \"" DEFAULT_FILENAME "\"");
|
||||
}
|
||||
|
||||
curl_free(path);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue