dgaudet 98/01/26 18:41:13
Modified: src/main http_request.c
Log:
Oh nevermind. I didn't realise internal redirected requests shared the
same pool as the main request. That's odd, maybe there's some savings
to be had... some other day.
Revision Changes Path
1.103 +1 -1 apachen/src/main/http_request.c
Index: http_request.c
===================================================================
RCS file: /export/home/cvs/apachen/src/main/http_request.c,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- http_request.c 1998/01/27 02:39:41 1.102
+++ http_request.c 1998/01/27 02:41:11 1.103
@@ -1219,7 +1219,7 @@
new->headers_in = r->headers_in;
new->headers_out = make_table(r->pool, 5);
new->err_headers_out = r->err_headers_out;
- new->subprocess_env = rename_original_env(new->pool, r->subprocess_env);
+ new->subprocess_env = rename_original_env(r->pool, r->subprocess_env);
new->notes = make_table(r->pool, 5);
new->htaccess = r->htaccess;