mirror of
https://github.com/curl/curl.git
synced 2026-07-04 16:37:15 +03:00
mark a value as alloced when strdup()ed to prevent memory leaks
This commit is contained in:
parent
b121e41ec3
commit
ccdcdb2a46
1 changed files with 3 additions and 1 deletions
|
|
@ -492,8 +492,10 @@ CURLFORMcode FormAdd(struct curl_httppost **httppost,
|
|||
current_form->value = strdup(filename);
|
||||
if(!current_form->value)
|
||||
return_value = CURL_FORMADD_MEMORY;
|
||||
else
|
||||
else {
|
||||
current_form->flags |= HTTPPOST_READFILE;
|
||||
current_form->value_alloc = TRUE;
|
||||
}
|
||||
}
|
||||
else
|
||||
return_value = CURL_FORMADD_NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue