aboutsummaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@broadpark.no>2006-07-25 11:35:35 +0000
committerGisle Vanem <gvanem@broadpark.no>2006-07-25 11:35:35 +0000
commitab486d1e278c76d2070f8ed38b7fa2fc12b1cd45 (patch)
treecab984b2de3bb40bbd582e3a7d0f4f1fd346145e /lib/easy.c
parent9111909c1d4d31d186d8ebc1f30447bd97969517 (diff)
Silence iconv() warnings.
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 9995bcdee..827463ad8 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -98,6 +98,7 @@
#ifndef CURL_ICONV_CODESET_FOR_UTF8
#define CURL_ICONV_CODESET_FOR_UTF8 "UTF-8"
#endif
+#define ICONV_ERROR (size_t)-1
#endif /* CURL_DOES_CONVERSIONS && HAVE_ICONV */
/* The last #include file should be: */
@@ -722,9 +723,9 @@ CURLcode Curl_convert_to_network(struct SessionHandle *data,
/* call iconv */
input_ptr = output_ptr = buffer;
in_bytes = out_bytes = length;
- rc = iconv(data->outbound_cd, &input_ptr, &in_bytes,
+ rc = iconv(data->outbound_cd, (const char**)&input_ptr, &in_bytes,
&output_ptr, &out_bytes);
- if ((rc == -1) || (in_bytes != 0)) {
+ if ((rc == ICONV_ERROR) || (in_bytes != 0)) {
failf(data,
"The Curl_convert_to_network iconv call failed with errno %i: %s",
errno, strerror(errno));
@@ -779,9 +780,9 @@ CURLcode Curl_convert_from_network(struct SessionHandle *data,
/* call iconv */
input_ptr = output_ptr = buffer;
in_bytes = out_bytes = length;
- rc = iconv(data->inbound_cd, &input_ptr, &in_bytes,
+ rc = iconv(data->inbound_cd, (const char **)&input_ptr, &in_bytes,
&output_ptr, &out_bytes);
- if ((rc == -1) || (in_bytes != 0)) {
+ if ((rc == ICONV_ERROR) || (in_bytes != 0)) {
failf(data,
"The Curl_convert_from_network iconv call failed with errno %i: %s",
errno, strerror(errno));
@@ -836,8 +837,9 @@ CURLcode Curl_convert_from_utf8(struct SessionHandle *data,
/* call iconv */
input_ptr = output_ptr = buffer;
in_bytes = out_bytes = length;
- rc = iconv(data->utf8_cd, &input_ptr, &in_bytes, &output_ptr, &out_bytes);
- if ((rc == -1) || (in_bytes != 0)) {
+ rc = iconv(data->utf8_cd, (const char**)&input_ptr, &in_bytes,
+ &output_ptr, &out_bytes);
+ if ((rc == ICONV_ERROR) || (in_bytes != 0)) {
failf(data,
"The Curl_convert_from_utf8 iconv call failed with errno %i: %s",
errno, strerror(errno));