From 4413e567166e6264e4dd643d6f0232ca4090b47d Mon Sep 17 00:00:00 2001 From: Joe Schaefer Date: Tue, 7 Apr 2026 09:00:57 -0400 Subject: [PATCH] Fix incorrect pool reference in h2_request_rcreate --- modules/http2/h2_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http2/h2_stream.c b/modules/http2/h2_stream.c index f0e671ca5d6..3cec981a054 100644 --- a/modules/http2/h2_stream.c +++ b/modules/http2/h2_stream.c @@ -659,7 +659,7 @@ apr_status_t h2_stream_set_request_rec(h2_stream *stream, if (stream->rst_error) { return APR_ECONNRESET; } - status = h2_request_rcreate(&req, stream->pool, r, + status = h2_request_rcreate(&req, r->pool, r, &stream->session->hd_scratch); if (status == APR_SUCCESS) { ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status, r,