Loading lib/ftp.c +1 −1 Original line number Diff line number Diff line Loading @@ -4004,7 +4004,7 @@ CURLcode ftp_parse_url_path(struct connectdata *conn) return CURLE_OUT_OF_MEMORY; } dlen -= ftpc->file?strlen(ftpc->file):0; dlen -= ftpc->file?(int)strlen(ftpc->file):0; if((dlen == (int)strlen(ftpc->prevpath)) && strnequal(path, ftpc->prevpath, dlen)) { infof(data, "Request has same path as previous transfer\n"); Loading lib/transfer.c +1 −1 Original line number Diff line number Diff line Loading @@ -244,7 +244,7 @@ CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp) data->req.upload_done = TRUE; } nread+=strlen(endofline_native); /* for the added end of line */ nread+=(int)strlen(endofline_native); /* for the added end of line */ } #ifdef CURL_DOES_CONVERSIONS else if((data->set.prefer_ascii) && (!sending_http_headers)) { Loading Loading
lib/ftp.c +1 −1 Original line number Diff line number Diff line Loading @@ -4004,7 +4004,7 @@ CURLcode ftp_parse_url_path(struct connectdata *conn) return CURLE_OUT_OF_MEMORY; } dlen -= ftpc->file?strlen(ftpc->file):0; dlen -= ftpc->file?(int)strlen(ftpc->file):0; if((dlen == (int)strlen(ftpc->prevpath)) && strnequal(path, ftpc->prevpath, dlen)) { infof(data, "Request has same path as previous transfer\n"); Loading
lib/transfer.c +1 −1 Original line number Diff line number Diff line Loading @@ -244,7 +244,7 @@ CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp) data->req.upload_done = TRUE; } nread+=strlen(endofline_native); /* for the added end of line */ nread+=(int)strlen(endofline_native); /* for the added end of line */ } #ifdef CURL_DOES_CONVERSIONS else if((data->set.prefer_ascii) && (!sending_http_headers)) { Loading