From c347b8e30954f497cf374409b594145cb32de9b7 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 1 Nov 2003 16:25:44 +0000 Subject: [PATCH] fix an inaccurate back-port from 2.1-dev... the pool-tag call ended up in the wrong place git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101649 13f79535-47bb-0310-9956-ffa450edef68 --- server/protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/protocol.c b/server/protocol.c index 9cafc4b35ec..fe9a9110f37 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -861,8 +861,8 @@ request_rec *ap_read_request(conn_rec *conn) apr_bucket_brigade *tmp_bb; apr_pool_create(&p, conn->pool); - r = apr_pcalloc(p, sizeof(request_rec)); apr_pool_tag(p, "request"); + r = apr_pcalloc(p, sizeof(request_rec)); r->pool = p; r->connection = conn; r->server = conn->base_server; -- 2.47.2