diff options
author | Anatol Belski <ab@php.net> | 2019-08-27 14:34:14 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2019-08-27 14:34:35 +0200 |
commit | 9b5d66bd52c90f37aa39ea6bcab4c46b6121f3d8 (patch) | |
tree | aad824d80ea21b268749793d9f1f05385891b438 /main/php_ini.c | |
parent | 78e0f85cb58a31a9adebbf7310c739d560e78877 (diff) | |
download | php-git-9b5d66bd52c90f37aa39ea6bcab4c46b6121f3d8.tar.gz |
Fix signature and calls
Diffstat (limited to 'main/php_ini.c')
-rw-r--r-- | main/php_ini.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php_ini.c b/main/php_ini.c index d508c13b50..cc2cf16cf8 100644 --- a/main/php_ini.c +++ b/main/php_ini.c @@ -341,7 +341,7 @@ static void php_load_zend_extension_cb(void *arg) if (IS_ABSOLUTE_PATH(filename, length)) { #ifdef PHP_WIN32 char *err; - if (!php_win32_image_compatible(filename, NULL, &err)) { + if (!php_win32_image_compatible(filename, &err)) { php_error(E_CORE_WARNING, err); return; } @@ -392,7 +392,7 @@ static void php_load_zend_extension_cb(void *arg) } #ifdef PHP_WIN32 - if (!php_win32_image_compatible(libpath, NULL, &err1)) { + if (!php_win32_image_compatible(libpath, &err1)) { php_error(E_CORE_WARNING, err1); efree(err1); efree(libpath); |