diff options
author | Stanislav Malyshev <stas@php.net> | 2016-12-05 22:33:33 -0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2016-12-05 22:33:33 -0800 |
commit | 183b4d78aa03bfa4208d00d4e2eec71ffcde4ab7 (patch) | |
tree | 52937b831404a7c1c1912a1cd805b08ed04cb5bd | |
parent | 1d59ed75246c7d05688accc349fda70cbee90428 (diff) | |
parent | d7ce944cf13fb56daee33b7a6c86eed883c2d284 (diff) | |
download | php-git-183b4d78aa03bfa4208d00d4e2eec71ffcde4ab7.tar.gz |
Merge branch 'PHP-5.6' into PHP-7.0
* PHP-5.6:
This still leaks memory, I don't have enough knowledge in WDDX code to fix them :(
-rw-r--r-- | ext/wddx/tests/bug73631.phpt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/wddx/tests/bug73631.phpt b/ext/wddx/tests/bug73631.phpt index 5e37ae8269..880ada5a5d 100644 --- a/ext/wddx/tests/bug73631.phpt +++ b/ext/wddx/tests/bug73631.phpt @@ -2,6 +2,8 @@ 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 @@ -16,4 +18,3 @@ var_dump($wddx); ?> --EXPECTF-- int(1234) - |