diff options
| author | Kalle Sommer Nielsen <kalle@php.net> | 2013-12-18 09:06:39 +0100 |
|---|---|---|
| committer | Kalle Sommer Nielsen <kalle@php.net> | 2013-12-18 09:06:39 +0100 |
| commit | ed5a8d510f6e4ae865008fe711efbbc5452adf42 (patch) | |
| tree | ee91470302effff16eae78220f55c8b16e8a4464 /sapi/apache2filter | |
| parent | f70f89c1b1e0bbd2b2b6940bb0a4e12a2be07770 (diff) | |
| download | php-git-ed5a8d510f6e4ae865008fe711efbbc5452adf42.tar.gz | |
Pass the TSRMLS parameters to the sapi flush hook, this shaves off a few TSRMLS_FETCH() calls in our various SAPIs
Diffstat (limited to 'sapi/apache2filter')
| -rw-r--r-- | sapi/apache2filter/sapi_apache2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/apache2filter/sapi_apache2.c b/sapi/apache2filter/sapi_apache2.c index 8ce490ea43..c992c1c2d3 100644 --- a/sapi/apache2filter/sapi_apache2.c +++ b/sapi/apache2filter/sapi_apache2.c @@ -245,14 +245,13 @@ php_apache_sapi_register_variables(zval *track_vars_array TSRMLS_DC) } static void -php_apache_sapi_flush(void *server_context) +php_apache_sapi_flush(void *server_context TSRMLS_DC) { php_struct *ctx; apr_bucket_brigade *bb; apr_bucket_alloc_t *ba; apr_bucket *b; ap_filter_t *f; /* output filters */ - TSRMLS_FETCH(); ctx = server_context; |
