mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
mark a value as alloced when strdup()ed to prevent memory leaks
This commit is contained in:
parent
b121e41ec3
commit
ccdcdb2a46
@ -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…
Reference in New Issue
Block a user