From 38c886a449a54574119a8eb1c6c5e5376acba6d8 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Wed, 7 May 2014 07:31:21 +0200 Subject: [PATCH] -- 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 --- main/php_ini.c | 1 + 1 file changed, 1 insertion(+) 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); -- 2.50.1