Merge branch 'PHP-7.4'

* PHP-7.4:
  Properly initialize variable
This commit is contained in:
Christoph M. Becker 2019-05-05 17:50:15 +02:00
commit 848ce03347

View file

@ -2895,7 +2895,7 @@ ZEND_METHOD(FFI, load) /* {{{ */
size_t code_size, scope_name_len;
zend_ffi *ffi;
zend_bool preload = (CG(compiler_options) & ZEND_COMPILE_PRELOAD) != 0;
DL_HANDLE handle;
DL_HANDLE handle = NULL;
zend_ffi_scope *scope = NULL;
zend_string *name;
zend_ffi_symbol *sym;