diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-07-14 01:55:32 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-07-14 01:56:05 +0200 |
commit | 07c425cc290ccea8cf4ae49148b8e26e9024692f (patch) | |
tree | 5dad60347c98424571e7ad0b40b96120ecd918f5 /sapi/phpdbg/phpdbg.c | |
parent | 51ce31e0c47bdb7b61f257035072772c3c7fd62d (diff) | |
download | php-git-07c425cc290ccea8cf4ae49148b8e26e9024692f.tar.gz |
Init variable to NULL before passing to zpp
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |