diff options
author | Pierre Joye <pierre.php@gmail.com> | 2014-05-07 07:31:21 +0200 |
---|---|---|
committer | Pierre Joye <pierre.php@gmail.com> | 2014-05-07 07:31:21 +0200 |
commit | 38c886a449a54574119a8eb1c6c5e5376acba6d8 (patch) | |
tree | 3b0b40841a774027727512a9ed0043c421ddf5d4 /main/php_ini.c | |
parent | 478a8b2ebbd6a5fd2e49c3e1069b284b1a38c018 (diff) | |
download | php-git-38c886a449a54574119a8eb1c6c5e5376acba6d8.tar.gz |
-- missing length declaration, may have worked w/some gcc as length is not used in the macro but still need it, ifdef just make code uncertain. will get opt out anyway if not used
Diffstat (limited to 'main/php_ini.c')
-rw-r--r-- | main/php_ini.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/php_ini.c b/main/php_ini.c index 2b62e80554..d742712758 100644 --- a/main/php_ini.c +++ b/main/php_ini.c @@ -355,6 +355,7 @@ static void php_load_php_extension_cb(void *arg TSRMLS_DC) static void php_load_zend_extension_cb(void *arg TSRMLS_DC) { char *filename = *((char **) arg); + const int length = strlen(filename); if (IS_ABSOLUTE_PATH(filename, length)) { zend_load_extension(filename TSRMLS_CC); |