diff options
author | Sascha Schumann <sas@php.net> | 2001-08-05 15:55:43 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-08-05 15:55:43 +0000 |
commit | 373b3e101e0394f0727e1e5855e18e15851d0919 (patch) | |
tree | 8e7e61842a2bc878663f8b8407ac6a834b806eef /sapi/apache/php_apache.c | |
parent | 8aef1930565d36807647e52b5e5b7c4e3f4a57b1 (diff) | |
download | php-git-373b3e101e0394f0727e1e5855e18e15851d0919.tar.gz |
more tsrm cleanup -- output.c is not doing any fetches anymore
Diffstat (limited to 'sapi/apache/php_apache.c')
-rw-r--r-- | sapi/apache/php_apache.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 0f14f90421..53fde3343f 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -182,6 +182,7 @@ PHP_MINFO_FUNCTION(apache) extern char *user_name; extern gid_t group_id; extern int max_requests_per_child; + TSRMLS_FETCH(); serv = ((request_rec *) SG(server_context))->server; @@ -241,7 +242,6 @@ PHP_MINFO_FUNCTION(apache) array_header *arr; table_entry *elts; request_rec *r; - TSRMLS_FETCH(); r = ((request_rec *) SG(server_context)); arr = table_elts(r->subprocess_env); @@ -261,7 +261,6 @@ PHP_MINFO_FUNCTION(apache) table_entry *env; int i; request_rec *r; - TSRMLS_FETCH(); r = ((request_rec *) SG(server_context)); SECTION("HTTP Headers Information"); |