mirror of
https://github.com/curl/curl.git
synced 2026-07-25 15:57:17 +03:00
parent
fc3261b284
commit
be92f0a2e4
8 changed files with 76 additions and 79 deletions
|
|
@ -609,11 +609,11 @@ CURLFORMcode curl_formadd(struct curl_httppost **httppost,
|
|||
struct curl_httppost **last_post, ...)
|
||||
{
|
||||
va_list arg;
|
||||
CURLFORMcode result;
|
||||
CURLFORMcode form;
|
||||
va_start(arg, last_post);
|
||||
result = FormAdd(httppost, last_post, arg);
|
||||
form = FormAdd(httppost, last_post, arg);
|
||||
va_end(arg);
|
||||
return result;
|
||||
return form;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue