summaryrefslogtreecommitdiff
path: root/lib/http2.c
diff options
context:
space:
mode:
authorNick Banks <nibanks@microsoft.com>2022-12-27 16:02:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2022-12-28 13:52:58 +0100
commitae98b85020094fb04eee7e7b4ec4eb1a38a98b98 (patch)
tree6aa3045d4e2129e161cbc0b2b085de349f9bc5bf /lib/http2.c
parentf39472ea9f4f4e12cfbc0500c4580a8d52ce4a59 (diff)
downloadcurl-ae98b85020094fb04eee7e7b4ec4eb1a38a98b98.tar.gz
msh3: add support for request payload
Closes #10136
Diffstat (limited to 'lib/http2.c')
-rw-r--r--lib/http2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c
index b9d3245cf..6d060ae17 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -1942,7 +1942,7 @@ static ssize_t http2_send(struct Curl_easy *data, int sockindex,
return len;
}
- result = Curl_pseudo_headers(data, mem, len, &hreq);
+ result = Curl_pseudo_headers(data, mem, len, NULL, &hreq);
if(result) {
*err = result;
return -1;