summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-12-20 18:33:54 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-12-20 18:33:54 +0100
commit85b5d9abe8ce93855193fc401b3d7dfbdce09147 (patch)
treecbed91796551a09bbed36821661207038c6a14f2
parentccbdbe13c43f15a637afdd1ac4bf5df62c25a235 (diff)
downloadcurl-bagder/c-hyper-warnings.tar.gz
c-hyper: fix compiler warningsbagder/c-hyper-warnings
Identified by clang on windows. Reported-by: Gisle Vanem Bug: 58974d25d8173aec154e593ed9d866da566c9811
-rw-r--r--lib/c-hyper.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/c-hyper.c b/lib/c-hyper.c
index e7b01f9d7..c7995d9f1 100644
--- a/lib/c-hyper.c
+++ b/lib/c-hyper.c
@@ -525,7 +525,8 @@ static int uploadpostfields(void *userdata, hyper_context *ctx,
*chunk = NULL; /* nothing more to deliver */
else {
/* send everything off in a single go */
- *chunk = hyper_buf_copy(data->set.postfields, data->req.p.http->postsize);
+ *chunk = hyper_buf_copy(data->set.postfields,
+ (size_t)data->req.p.http->postsize);
data->req.upload_done = TRUE;
}
return HYPER_POLL_READY;
@@ -561,7 +562,7 @@ static CURLcode bodysend(struct Curl_easy *data,
hyper_request *hyperreq,
Curl_HttpReq httpreq)
{
- CURLcode result;
+ CURLcode result = CURLE_OK;
struct dynbuf req;
if((httpreq == HTTPREQ_GET) || (httpreq == HTTPREQ_HEAD))
Curl_pgrsSetUploadSize(data, 0); /* no request body */
@@ -819,11 +820,9 @@ CURLcode Curl_http(struct connectdata *conn, bool *done)
if(result)
return result;
- if((httpreq != HTTPREQ_GET) && (httpreq != HTTPREQ_HEAD)) {
- result = bodysend(data, conn, headers, req, httpreq);
- if(result)
- return result;
- }
+ result = bodysend(data, conn, headers, req, httpreq);
+ if(result)
+ return result;
Curl_debug(data, CURLINFO_HEADER_OUT, (char *)"\r\n", 2);