diff options
author | Dmitry Stogov <dmitry@zend.com> | 2018-07-05 13:32:39 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2018-07-05 13:32:39 +0300 |
commit | b6fb584505cfddcd20c9913e0931374a8ce33a3f (patch) | |
tree | cfcefd169332785b149b03ff3d80c88936a46051 /sapi/phpdbg/phpdbg_frame.c | |
parent | 0d235517a36ea99c7fc1116e0dc90cba3c21a1f7 (diff) | |
download | php-git-b6fb584505cfddcd20c9913e0931374a8ce33a3f.tar.gz |
Replace zval_dtor() with specialized destructors
Diffstat (limited to 'sapi/phpdbg/phpdbg_frame.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_frame.c b/sapi/phpdbg/phpdbg_frame.c index 7cdedcb497..2065277dfe 100644 --- a/sapi/phpdbg/phpdbg_frame.c +++ b/sapi/phpdbg/phpdbg_frame.c @@ -314,7 +314,7 @@ void phpdbg_dump_backtrace(size_t num) /* {{{ */ phpdbg_writeln("frame", "id=\"%d\" symbol=\"{main}\" file=\"%s\" line=\"%d\"", "frame #%d: {main} at %s:%ld", i, Z_STRVAL_P(file), Z_LVAL_P(line)); phpdbg_xml("</backtrace>"); - zval_dtor(&zbacktrace); + zval_ptr_dtor_nogc(&zbacktrace); zend_string_release(Z_STR(startfile)); PHPDBG_OUTPUT_BACKUP_RESTORE(); |