diff options
author | Dmitry Stogov <dmitry@zend.com> | 2018-07-05 17:55:54 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2018-07-05 17:55:54 +0300 |
commit | 169d4545931a43df258608c6cfb59b3e4bb92776 (patch) | |
tree | 64f46e4647fc1cb8f73562ecaae5922e5342e14d /sapi/phpdbg | |
parent | 43d5a3665ddc8b871ccdcd10c4ffde408cd28d35 (diff) | |
download | php-git-169d4545931a43df258608c6cfb59b3e4bb92776.tar.gz |
Use zval_ptr_dtor() imstead of zval_dtor()
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r-- | sapi/phpdbg/phpdbg_wait.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_wait.c b/sapi/phpdbg/phpdbg_wait.c index 8cfc337916..96504c7d7e 100644 --- a/sapi/phpdbg/phpdbg_wait.c +++ b/sapi/phpdbg/phpdbg_wait.c @@ -327,7 +327,7 @@ void phpdbg_webdata_decompress(char *msg, int len) { } ZEND_HASH_FOREACH_END(); } - zval_dtor(&zv); + zval_ptr_dtor(&zv); if (free_zv) { /* separate freeing to not dtor the symtable too, just the container zval... */ efree(free_zv); |