]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix an inaccurate back-port from 2.1-dev... the pool-tag call ended
authorJeff Trawick <trawick@apache.org>
Sat, 1 Nov 2003 16:25:44 +0000 (16:25 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 1 Nov 2003 16:25:44 +0000 (16:25 +0000)
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

index 9cafc4b35ecfbb276a82f6c3d468ac6f6e798524..fe9a9110f379b921f0e96728885a9aaa0fee3529 100644 (file)
@@ -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;