summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_wait.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-07-05 17:55:54 +0300
committerDmitry Stogov <dmitry@zend.com>2018-07-05 17:55:54 +0300
commit169d4545931a43df258608c6cfb59b3e4bb92776 (patch)
tree64f46e4647fc1cb8f73562ecaae5922e5342e14d /sapi/phpdbg/phpdbg_wait.c
parent43d5a3665ddc8b871ccdcd10c4ffde408cd28d35 (diff)
downloadphp-git-169d4545931a43df258608c6cfb59b3e4bb92776.tar.gz
Use zval_ptr_dtor() imstead of zval_dtor()
Diffstat (limited to 'sapi/phpdbg/phpdbg_wait.c')
-rw-r--r--sapi/phpdbg/phpdbg_wait.c2
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);