summaryrefslogtreecommitdiff
path: root/ext/standard/tests
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2018-08-22 13:51:55 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2018-08-22 13:51:55 +0200
commit5aac8fdbfc608841769881a192c50b6ef1a5617b (patch)
tree180dd5180e665a07688a0ae4d890696ea3f26a24 /ext/standard/tests
parent1ff3b5dd7583fc576eef15b7f342d26efb237fca (diff)
parent1de17428f671b6a5ca0495655a597a58b79517a5 (diff)
downloadphp-git-5aac8fdbfc608841769881a192c50b6ef1a5617b.tar.gz
Merge branch 'PHP-7.3'
* PHP-7.3: Fix #76778: array_reduce leaks memory if callback throws exception
Diffstat (limited to 'ext/standard/tests')
-rw-r--r--ext/standard/tests/array/bug76778.phpt26
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===