mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
15 lines
289 B
PHP
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
|