mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-02 19:29:31 +00:00
FS-2936 stage 5 handle varargs right
This commit is contained in:
parent
d9089edf89
commit
13dc2f9e31
@ -1,6 +1,8 @@
|
|||||||
#include <switch.h>
|
#include <switch.h>
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
|
|
||||||
|
CURLcode Curl_setopt(switch_CURL *curl, CURLoption option, va_list arg);
|
||||||
|
|
||||||
|
|
||||||
SWITCH_DECLARE(switch_CURL *) switch_curl_easy_init(void)
|
SWITCH_DECLARE(switch_CURL *) switch_curl_easy_init(void)
|
||||||
{
|
{
|
||||||
@ -19,7 +21,7 @@ SWITCH_DECLARE(switch_CURLcode) switch_curl_easy_getinfo(switch_CURL *curl, swit
|
|||||||
switch_CURLcode code;
|
switch_CURLcode code;
|
||||||
|
|
||||||
va_start(ap, info);
|
va_start(ap, info);
|
||||||
code = curl_easy_getinfo(curl, info, ap);
|
code = curl_easy_getinfo(curl, info, va_arg(ap, void *));
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
|
|
||||||
return code;
|
return code;
|
||||||
@ -51,7 +53,7 @@ SWITCH_DECLARE(switch_CURLcode) switch_curl_easy_setopt(CURL *handle, switch_CUR
|
|||||||
switch_CURLcode code;
|
switch_CURLcode code;
|
||||||
|
|
||||||
va_start(ap, option);
|
va_start(ap, option);
|
||||||
code = curl_easy_setopt(handle, option, ap);
|
code = Curl_setopt(handle, option, ap);
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
|
|
||||||
return code;
|
return code;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user