From 2ee761c19b60b9f1054a91e492aa81cee2da0a87 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 26 May 2021 23:09:44 +0200 Subject: [PATCH] Revert "c-hyper: handle body on HYPER_TASK_EMPTY" This reverts commit c3eefa95c31f55657f0af422e8268d738f689066. Reported-by: Kevin Burke Fixes #7122 Closes #7136 --- lib/c-hyper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/c-hyper.c b/lib/c-hyper.c index 81f589eb9e..5908f6e1f7 100644 --- a/lib/c-hyper.c +++ b/lib/c-hyper.c @@ -331,7 +331,7 @@ CURLcode Curl_hyper_stream(struct Curl_easy *data, infof(data, "hyperstream is done!\n"); break; } - else if(t != HYPER_TASK_RESPONSE && t != HYPER_TASK_EMPTY) { + else if(t != HYPER_TASK_RESPONSE) { *didwhat = KEEP_RECV; break; } -- 2.47.3