summaryrefslogtreecommitdiff
path: root/ext/standard/dl.c
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2017-09-29 03:06:16 +0200
committerPeter Kokot <peterkokot@gmail.com>2017-09-29 14:33:54 +0200
commit8d87f6f6ddd80bd342590d6ca246d7cdd565b0c3 (patch)
tree8eea7839dda8a9df9f46e608e6667ad16c73f667 /ext/standard/dl.c
parenta93fe32c1afad44ddcc1e67c3b65a2a6a16c7158 (diff)
downloadphp-git-8d87f6f6ddd80bd342590d6ca246d7cdd565b0c3.tar.gz
Fix bug #75279
Diffstat (limited to 'ext/standard/dl.c')
-rw-r--r--ext/standard/dl.c2
1 files changed, 1 insertions, 1 deletions
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;