diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2010-04-13 11:02:15 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2010-04-13 11:02:15 +0000 |
commit | 7ef4cdf47103c0eb348b351ba5da7c1cfc93dd58 (patch) | |
tree | 48924f2ee3aa3ed726df5599ba9106837facb76f /sapi/apache/php_apache.c | |
parent | 1b8b6d931a65ea2d7d44adfe34005a96396dd401 (diff) | |
download | php-git-7ef4cdf47103c0eb348b351ba5da7c1cfc93dd58.tar.gz |
Remove a couple TSRMLS_FETCH() calls around ext/main/sapi
Diffstat (limited to 'sapi/apache/php_apache.c')
-rw-r--r-- | sapi/apache/php_apache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 8faa6f34f0..20a5160935 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -533,14 +533,14 @@ PHP_FUNCTION(apache_lookup_uri) #if 0 +/* This function is most likely a bad idea. Just playing with it for now. - +*/ PHP_FUNCTION(apache_exec_uri) { char *filename; int filename_len; request_rec *rr=NULL; - TSRMLS_FETCH(); if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &filename, &filename_len) == FAILURE) { return; |