mark a value as alloced when strdup()ed to prevent memory leaks

This commit is contained in:
Daniel Stenberg 2004-05-13 14:13:12 +00:00
parent b121e41ec3
commit ccdcdb2a46
1 changed files with 3 additions and 1 deletions

View File

@ -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;