From: Jeff Trawick Date: Sat, 1 Nov 2003 16:25:44 +0000 (+0000) Subject: fix an inaccurate back-port from 2.1-dev... the pool-tag call ended X-Git-Tag: 2.0.49~412 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c347b8e30954f497cf374409b594145cb32de9b7;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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;