diff options
Diffstat (limited to 'sapi/apache/php_apache.c')
-rw-r--r-- | sapi/apache/php_apache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index dd7abe2bb6..9db0a94898 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -394,7 +394,8 @@ PHP_FUNCTION(apache_response_headers) Set an Apache subprocess_env variable */ PHP_FUNCTION(apache_setenv) { - int var_len, val_len, top=0; + int var_len, val_len; + zend_bool top=0; char *var = NULL, *val = NULL; request_rec *r = (request_rec *) SG(server_context); |