Loading lib/non-ascii.c +10 −3 Original line number Diff line number Diff line Loading @@ -24,6 +24,13 @@ #ifdef CURL_DOES_CONVERSIONS #include "non-ascii.h" #include "formdata.h" #include "sendf.h" #include "urldata.h" #include <curl/curl.h> #ifdef HAVE_ICONV #include <iconv.h> /* set default codesets for iconv */ Loading @@ -37,10 +44,10 @@ #endif /* HAVE_ICONV */ /* * Curl_convertclone() returns a malloced copy of the source string (if * Curl_convert_clone() returns a malloced copy of the source string (if * returning CURLE_OK), with the data converted to network format. */ CURLcode Curl_convertclone(struct SessionHandle *data, CURLcode Curl_convert_clone(struct SessionHandle *data, const char *indata, size_t insize, char **outbuf) Loading @@ -54,7 +61,7 @@ CURLcode Curl_convertclone(struct SessionHandle *data, memcpy(convbuf, indata, insize); result = Curl_convert_to_network(data, convbuf, insize); if(result) {s if(result) { free(convbuf); return result; } Loading lib/non-ascii.h +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ #include "urldata.h" /* * Curl_convertclone() returns a malloced copy of the source string (if * Curl_convert_clone() returns a malloced copy of the source string (if * returning CURLE_OK), with the data converted to network format. * * If no conversion was needed *outbuf may be NULL. Loading lib/transfer.c +1 −0 Original line number Diff line number Diff line Loading @@ -103,6 +103,7 @@ #include "multiif.h" #include "rtsp.h" #include "connect.h" #include "non-ascii.h" #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> Loading Loading
lib/non-ascii.c +10 −3 Original line number Diff line number Diff line Loading @@ -24,6 +24,13 @@ #ifdef CURL_DOES_CONVERSIONS #include "non-ascii.h" #include "formdata.h" #include "sendf.h" #include "urldata.h" #include <curl/curl.h> #ifdef HAVE_ICONV #include <iconv.h> /* set default codesets for iconv */ Loading @@ -37,10 +44,10 @@ #endif /* HAVE_ICONV */ /* * Curl_convertclone() returns a malloced copy of the source string (if * Curl_convert_clone() returns a malloced copy of the source string (if * returning CURLE_OK), with the data converted to network format. */ CURLcode Curl_convertclone(struct SessionHandle *data, CURLcode Curl_convert_clone(struct SessionHandle *data, const char *indata, size_t insize, char **outbuf) Loading @@ -54,7 +61,7 @@ CURLcode Curl_convertclone(struct SessionHandle *data, memcpy(convbuf, indata, insize); result = Curl_convert_to_network(data, convbuf, insize); if(result) {s if(result) { free(convbuf); return result; } Loading
lib/non-ascii.h +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ #include "urldata.h" /* * Curl_convertclone() returns a malloced copy of the source string (if * Curl_convert_clone() returns a malloced copy of the source string (if * returning CURLE_OK), with the data converted to network format. * * If no conversion was needed *outbuf may be NULL. Loading
lib/transfer.c +1 −0 Original line number Diff line number Diff line Loading @@ -103,6 +103,7 @@ #include "multiif.h" #include "rtsp.h" #include "connect.h" #include "non-ascii.h" #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> Loading