mirror of
https://github.com/curl/curl.git
synced 2026-07-13 12:27:20 +03:00
tidy-up: rename Curl_safefree()/tool_safefree() to curlx_safefree()
To sync names for the same macro logic between lib and src, and to move it to the curlx namespace, to match `curlx_free()` that it's calling. Closes #21151
This commit is contained in:
parent
2b3dfb4ad4
commit
0df6c01db3
72 changed files with 494 additions and 500 deletions
|
|
@ -187,7 +187,7 @@ static char *parse_filename(const char *ptr, size_t len, char stop)
|
|||
if(q) {
|
||||
p = q + 1;
|
||||
if(!*p) {
|
||||
tool_safefree(copy);
|
||||
curlx_safefree(copy);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
|
@ -199,7 +199,7 @@ static char *parse_filename(const char *ptr, size_t len, char stop)
|
|||
if(q) {
|
||||
p = q + 1;
|
||||
if(!*p) {
|
||||
tool_safefree(copy);
|
||||
curlx_safefree(copy);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
|
@ -220,7 +220,7 @@ static char *parse_filename(const char *ptr, size_t len, char stop)
|
|||
{
|
||||
char *sanitized;
|
||||
SANITIZEcode sc = sanitize_file_name(&sanitized, copy, 0);
|
||||
tool_safefree(copy);
|
||||
curlx_safefree(copy);
|
||||
if(sc)
|
||||
return NULL;
|
||||
copy = sanitized;
|
||||
|
|
@ -309,7 +309,7 @@ static size_t content_disposition(const char *str, const char *end,
|
|||
return CURL_WRITEFUNC_ERROR;
|
||||
}
|
||||
if(outs->alloc_filename)
|
||||
tool_safefree(outs->filename);
|
||||
curlx_safefree(outs->filename);
|
||||
|
||||
if(per->config->output_dir) {
|
||||
char *f = curl_maprintf("%s/%s", per->config->output_dir,
|
||||
|
|
@ -364,7 +364,7 @@ static size_t content_disposition(const char *str, const char *end,
|
|||
return CURL_WRITEFUNC_ERROR;
|
||||
}
|
||||
if(outs->alloc_filename)
|
||||
tool_safefree(outs->filename);
|
||||
curlx_safefree(outs->filename);
|
||||
|
||||
if(per->config->output_dir) {
|
||||
char *f = curl_maprintf("%s/%s", per->config->output_dir,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue