php-src/Zend/tests/closure_063.phpt
Dmitry Stogov 73fed0f028 Fix emory leak
Fixes oss-fuzz #44408
2022-02-11 15:16:08 +03:00

12 lines
174 B
PHP

--TEST--
Closure::bindTo leaks with "fake" closure
--FILE--
<?php
function foo(){
static $y;
}
Closure::fromCallable('foo')->bindTo(new stdClass);
?>
DONE
--EXPECT--
DONE