Fix zpp call in apache_getenv()

This commit is contained in:
Nikita Popov 2014-12-06 12:37:14 +01:00
parent 204e3f8d5a
commit 7be91dd730

View file

@ -288,8 +288,8 @@ PHP_FUNCTION(apache_setenv)
PHP_FUNCTION(apache_getenv)
{
php_struct *ctx;
char *variable=NULL;
int variable_len;
char *variable;
size_t variable_len;
zend_bool walk_to_top = 0;
int arg_count = ZEND_NUM_ARGS();
char *env_val=NULL;