diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2017-04-25 00:49:23 +0200 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2017-05-01 22:55:29 +0200 | 
| commit | 504eafff865478827f04f31e45ac367672f3e18d (patch) | |
| tree | 14675308ec5b103366728b67c545954d39972f5f | |
| parent | 87eb8d5b30ce2adfe2673cc0b1abf6ca68891cc4 (diff) | |
http2: use the correct set buffer size
| -rw-r--r-- | lib/http2.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c index 7f891ed32..46919c2ee 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -165,7 +165,7 @@ void Curl_http2_setup_req(struct Curl_easy *data)    http->closed = FALSE;    http->close_handled = FALSE;    http->mem = data->state.buffer; -  http->len = BUFSIZE; +  http->len = data->set.buffer_size;    http->memlen = 0;  }  | 
