diff options
author | Daniel Beulshausen <dbeu@php.net> | 2001-08-14 17:05:53 +0000 |
---|---|---|
committer | Daniel Beulshausen <dbeu@php.net> | 2001-08-14 17:05:53 +0000 |
commit | ba761ce9b18bde84afb38d74f14c588dd3d77a55 (patch) | |
tree | edc5c538fa82c6cf572effdef3d286e198ec4cdf /sapi/apache/php_apache.c | |
parent | f72d907105f648de3d0d3384b0aa0aa4e87da622 (diff) | |
download | php-git-ba761ce9b18bde84afb38d74f14c588dd3d77a55.tar.gz |
TSRMLS fixes
Diffstat (limited to 'sapi/apache/php_apache.c')
-rw-r--r-- | sapi/apache/php_apache.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 7140501cf6..76bcb01ca8 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -142,7 +142,6 @@ PHP_FUNCTION(apache_note) pval **arg_name, **arg_val; char *note_val; int arg_count = ARG_COUNT(ht); - TSRMLS_FETCH(); if (arg_count<1 || arg_count>2 || zend_get_parameters_ex(arg_count, &arg_name, &arg_val) ==FAILURE ) { @@ -339,7 +338,6 @@ PHP_FUNCTION(getallheaders) array_header *env_arr; table_entry *tenv; int i; - TSRMLS_FETCH(); if (array_init(return_value) == FAILURE) { RETURN_FALSE; @@ -365,7 +363,6 @@ PHP_FUNCTION(apache_lookup_uri) { pval **filename; request_rec *rr=NULL; - TSRMLS_FETCH(); if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1, &filename) == FAILURE) { WRONG_PARAM_COUNT; |