1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/ext/ffi/tests/bug78762.phpt
Christoph M. Becker 1e2d3d58a8 Fix #78762: Failing FFI::cast() may leak memory
We have to release objects when we're done with them.
2019-10-30 17:21:58 +01:00

15 lines
289 B
PHP

--TEST--
Bug #78762 (Failing FFI::cast() may leak memory)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
try {
FFI::cast('char[10]', FFI::new('char[1]'));
} catch (FFI\Exception $ex) {
echo $ex->getMessage(), PHP_EOL;
}
?>
--EXPECT--
attempt to cast to larger type