From 6b3d36ebaf606ca31f7e3d6623207ad0ce733f72 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 2 Mar 2026 13:14:55 +0100 Subject: [PATCH] fixup remove a condition --- lib/cw-out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cw-out.c b/lib/cw-out.c index 437ded3a66..3da803e8e9 100644 --- a/lib/cw-out.c +++ b/lib/cw-out.c @@ -260,7 +260,7 @@ static CURLcode cw_out_ptr_flush(struct cw_out_ctx *ctx, buf, wlen, &nwritten); if(result) return result; - if(otype == CW_OUT_BODY && nwritten) + if(otype == CW_OUT_BODY) Curl_pgrs_deliver_inc(data, nwritten); *pconsumed += nwritten; blen -= nwritten;