diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-08-22 13:32:55 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-08-22 13:40:24 +0200 |
commit | 70b2fca220fc27a16cc9f81f6c6da0f2a6d6d610 (patch) | |
tree | 1993d664aedeed667555d6089a7eee4450933dc2 /ext/standard/tests/array | |
parent | cf2fc66b0289dc7a34a0d9c0e67bccb8e97472bd (diff) | |
download | php-git-70b2fca220fc27a16cc9f81f6c6da0f2a6d6d610.tar.gz |
Fix #76778: array_reduce leaks memory if callback throws exception
We have to release the result variable in the error case, too.
Diffstat (limited to 'ext/standard/tests/array')
-rw-r--r-- | ext/standard/tests/array/bug76778.phpt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ext/standard/tests/array/bug76778.phpt b/ext/standard/tests/array/bug76778.phpt new file mode 100644 index 0000000000..2c65497d12 --- /dev/null +++ b/ext/standard/tests/array/bug76778.phpt @@ -0,0 +1,26 @@ +--TEST-- +Bug #76778 (array_reduce leaks memory if callback throws exception) +--SKIPIF-- +<?php +if (getenv("SKIP_SLOW_TESTS")) die('skip slow test'); +?> +--INI-- +memory_limit=32M +--FILE-- +<?php +for ($i = 0; $i < 100; $i++) { + try { + array_reduce( + [1], + function ($carry, $item) { + throw new Exception; + }, + range(1, 200000) + ); + } catch (Exception $e) { + } +} +?> +===DONE=== +--EXPECT-- +===DONE=== |