From: Stanislav Malyshev Date: Tue, 1 Feb 2005 19:01:50 +0000 (+0000) Subject: Fix debug_trace with eval (patch from Antony Dovgal) X-Git-Tag: php-5.0.4RC1~217 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8abcdde8643a6979564e0933c5a15576fdb94779;p=php Fix debug_trace with eval (patch from Antony Dovgal) --- diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index a1d43623ca..4428828ac1 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -1592,6 +1592,7 @@ ZEND_FUNCTION(debug_print_backtrace) while (ptr) { class_name = call_type = NULL; + arg_array = NULL; if (ptr->op_array) { filename = ptr->op_array->filename; lineno = ptr->opline->lineno;