mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
conversions: fix several compiler warnings
This commit is contained in:
parent
452c906dfd
commit
93843c372f
@ -221,20 +221,21 @@ CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp)
|
||||
strlen(endofline_network));
|
||||
|
||||
#ifdef CURL_DOES_CONVERSIONS
|
||||
CURLcode result;
|
||||
int length;
|
||||
if(data->set.prefer_ascii) {
|
||||
/* translate the protocol and data */
|
||||
length = nread;
|
||||
{
|
||||
CURLcode result;
|
||||
int length;
|
||||
if(data->set.prefer_ascii)
|
||||
/* translate the protocol and data */
|
||||
length = nread;
|
||||
else
|
||||
/* just translate the protocol portion */
|
||||
length = (int)strlen(hexbuffer);
|
||||
result = Curl_convert_to_network(data, data->req.upload_fromhere,
|
||||
length);
|
||||
/* Curl_convert_to_network calls failf if unsuccessful */
|
||||
if(result)
|
||||
return result;
|
||||
}
|
||||
else {
|
||||
/* just translate the protocol portion */
|
||||
length = strlen(hexbuffer);
|
||||
}
|
||||
result = Curl_convert_to_network(data, data->req.upload_fromhere, length);
|
||||
/* Curl_convert_to_network calls failf if unsuccessful */
|
||||
if(result)
|
||||
return result;
|
||||
#endif /* CURL_DOES_CONVERSIONS */
|
||||
|
||||
if((nread - hexlen) == 0)
|
||||
|
@ -1478,7 +1478,8 @@ static CURLcode verifyhost(struct connectdata *conn, X509 *server_cert)
|
||||
peer_CN = NULL;
|
||||
else {
|
||||
/* convert peer_CN from UTF8 */
|
||||
CURLcode rc = Curl_convert_from_utf8(data, peer_CN, strlen(peer_CN));
|
||||
CURLcode rc = Curl_convert_from_utf8(data, (char *)peer_CN,
|
||||
strlen((char *)peer_CN));
|
||||
/* Curl_convert_from_utf8 calls failf if unsuccessful */
|
||||
if(rc) {
|
||||
OPENSSL_free(peer_CN);
|
||||
|
Loading…
Reference in New Issue
Block a user