From c0c40ab075cdf86424dfe346a70a31b08dc651da Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 20 Jun 2019 12:30:25 +0200 Subject: http2: don't call stream-close on already closed streams Closes #4055 --- lib/http2.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/http2.c b/lib/http2.c index 6724eeeb0..b016bac92 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -1758,11 +1758,10 @@ static ssize_t http2_recv(struct connectdata *conn, int sockindex, return retlen; } - /* If stream is closed, return 0 to signal the http routine to close + /* If this stream is closed, return 0 to signal the http routine to close the connection */ - if(stream->closed) { - return http2_handle_stream_close(conn, data, stream, err); - } + if(stream->closed) + return 0; *err = CURLE_AGAIN; H2BUGF(infof(data, "http2_recv returns AGAIN for stream %u\n", stream->stream_id)); -- cgit v1.2.1