diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2001-08-05 05:35:06 +0000 |
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2001-08-05 05:35:06 +0000 |
| commit | a70ecedb33580601e1934979de77e38a44f53ff9 (patch) | |
| tree | 72feb7085d0c0f49a6da735add12861415d52145 /sapi/thttpd/thttpd.c | |
| parent | 1159c84ab7849099d4a717cd05c2d920102040ed (diff) | |
| download | php-git-a70ecedb33580601e1934979de77e38a44f53ff9.tar.gz | |
Remove more duplicate TSRMLS_FETCH() calls.
Diffstat (limited to 'sapi/thttpd/thttpd.c')
| -rw-r--r-- | sapi/thttpd/thttpd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sapi/thttpd/thttpd.c b/sapi/thttpd/thttpd.c index f12e50a79a..5da9d6eeef 100644 --- a/sapi/thttpd/thttpd.c +++ b/sapi/thttpd/thttpd.c @@ -262,7 +262,6 @@ static void thttpd_module_main(TSRMLS_D TSRMLS_DC) { zend_file_handle file_handle; TSRMLS_FETCH(); - TSRMLS_FETCH(); file_handle.type = ZEND_HANDLE_FILENAME; file_handle.filename = SG(request_info).path_translated; @@ -446,7 +445,6 @@ static void *worker_thread(void *dummy) int do_work = 50; httpd_conn *hc; TSRMLS_FETCH(); - TSRMLS_FETCH(); while (do_work) { hc = dequeue_request(); @@ -519,7 +517,6 @@ off_t thttpd_php_request(httpd_conn *hc) queue_request(hc); #else TSRMLS_FETCH(); - TSRMLS_FETCH(); return thttpd_real_php_request(hc TSRMLS_CC TSRMLS_CC); #endif } |
