From 8d87f6f6ddd80bd342590d6ca246d7cdd565b0c3 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Fri, 29 Sep 2017 03:06:16 +0200 Subject: [PATCH] Fix bug #75279 --- ext/standard/dl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/dl.c b/ext/standard/dl.c index f7407927a9..61cc77bbe5 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -110,7 +110,7 @@ PHPAPI int php_load_extension(char *filename, int type, int start_now) char *libpath; zend_module_entry *module_entry; zend_module_entry *(*get_module)(void); - int error_type, slash_suffix = NULL; + int error_type, slash_suffix = 0; char *extension_dir; char *err1, *err2; -- 2.40.0