From: Stanislav Malyshev Date: Tue, 1 Feb 2005 19:05:56 +0000 (+0000) Subject: Fix debug_trace with eval (patch from Antony Dovgal) X-Git-Tag: RELEASE_0_2~114 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1088e28dfa6ab0a249796a26d2be2f5eca609739;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 93c64223f4..1a652e3a3c 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -1600,6 +1600,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;