summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-06-20 12:30:25 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-06-20 12:30:25 +0200
commitf65cdef855949ff5e041529adff10225a275e098 (patch)
treec79f8feb4a16f5e5650c133be7610963abd6b88c
parentae99b4de1c443ae9892b1c0fc2b39e3afe73c4bc (diff)
downloadcurl-bagder/http2-stream-close.tar.gz
http2: don't call stream-close on already closed streamsbagder/http2-stream-close
-rw-r--r--lib/http2.c7
1 files 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));