From 0aa26de1d365510de3c3ef9abc14589201716298 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Tue, 1 Jul 2025 09:55:55 +0200 Subject: [PATCH] quiche, remove unused r2 vars --- lib/vquic/curl_quiche.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vquic/curl_quiche.c b/lib/vquic/curl_quiche.c index 55694c6d59..3588a52b3e 100644 --- a/lib/vquic/curl_quiche.c +++ b/lib/vquic/curl_quiche.c @@ -848,7 +848,7 @@ static CURLcode cf_quiche_recv(struct Curl_cfilter *cf, struct Curl_easy *data, { struct cf_quiche_ctx *ctx = cf->ctx; struct h3_stream_ctx *stream = H3_STREAM_CTX(ctx, data); - CURLcode result = CURLE_OK, r2; + CURLcode result = CURLE_OK; *pnread = 0; vquic_ctx_update_time(&ctx->q); @@ -1081,7 +1081,7 @@ static CURLcode cf_quiche_send(struct Curl_cfilter *cf, struct Curl_easy *data, { struct cf_quiche_ctx *ctx = cf->ctx; struct h3_stream_ctx *stream = H3_STREAM_CTX(ctx, data); - CURLcode result, r2; + CURLcode result; *pnwritten = 0; vquic_ctx_update_time(&ctx->q);