From: Daniel Stenberg Date: Mon, 29 Jul 2019 09:15:33 +0000 (+0200) Subject: http2_recv: trigger another read when the last data is returned X-Git-Tag: curl-7_66_0~194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc6045f5d1367b3bd60bb00aa9bed5164f000aee;p=thirdparty%2Fcurl.git http2_recv: trigger another read when the last data is returned ... so that end-of-stream is detected properly. Reported-by: Tom van der Woerdt Fixes #4043 Closes #4160 --- diff --git a/lib/http2.c b/lib/http2.c index eb55e62d1c..7112635249 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -1755,6 +1755,9 @@ static ssize_t http2_recv(struct connectdata *conn, int sockindex, else if(!stream->closed) { drained_transfer(data, httpc); } + else + /* this stream is closed, trigger a another read ASAP to detect that */ + Curl_expire(data, 0, EXPIRE_RUN_NOW); return retlen; }