From: Bob Weinand Date: Mon, 13 Jul 2015 23:55:32 +0000 (+0200) Subject: Init variable to NULL before passing to zpp X-Git-Tag: php-7.1.1RC1~35^2~6^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07c425cc290ccea8cf4ae49148b8e26e9024692f;p=php Init variable to NULL before passing to zpp --- diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index 85a085b26e..3ee0bde97f 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -447,7 +447,7 @@ static PHP_FUNCTION(phpdbg_end_oplog) phpdbg_oplog_entry *cur = PHPDBG_G(oplog_list)->start; phpdbg_oplog_list *prev = PHPDBG_G(oplog_list)->prev; - HashTable *options; + HashTable *options = NULL; zval *option_buffer; zend_bool by_function = 0; zend_bool by_opcode = 0;