summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-12-06 14:34:27 +0100
committerFerenc Kovacs <tyra3l@gmail.com>2016-12-08 07:04:11 +0100
commite64d104a9b43bd48da5260b4a91d42f4a71fd1c4 (patch)
treeb76164ecb7c329d76d1bd4e3c2601d916a822e24
parent331db73eab1008b30069137f27ebd1e7a42de28a (diff)
downloadphp-git-e64d104a9b43bd48da5260b4a91d42f4a71fd1c4.tar.gz
fix leak, take on 5.6
-rw-r--r--ext/wddx/tests/bug73631.phpt2
-rw-r--r--ext/wddx/wddx.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/wddx/tests/bug73631.phpt b/ext/wddx/tests/bug73631.phpt
index 880ada5a5d..1fcde72dfe 100644
--- a/ext/wddx/tests/bug73631.phpt
+++ b/ext/wddx/tests/bug73631.phpt
@@ -2,8 +2,6 @@
Bug #73631 (Memory leak due to invalid wddx stack processing)
--SKIPIF--
<?php if (!extension_loaded("wddx")) print "skip"; ?>
---XFAIL--
-Still has memory leaks, not sure how to fix them.
--FILE--
<?php
$xml = <<<EOF
diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c
index 0cee16b9ad..9394a59e27 100644
--- a/ext/wddx/wddx.c
+++ b/ext/wddx/wddx.c
@@ -1057,6 +1057,8 @@ static void php_wddx_pop_element(void *user_data, const XML_Char *name)
} else {
zend_hash_next_index_insert(target_hash, &ent1->data, sizeof(zval *), NULL);
}
+ } else if (!strcmp(name, EL_BINARY) && STR_EMPTY_ALLOC() == Z_STRVAL_P(ent1->data)) {
+ zval_ptr_dtor(&ent1->data);
}
efree(ent1);
} else {