mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

For rationale, see https://github.com/php/php-src/pull/6787 Make extension checks lowercase, add a special case for opcache that has internal name not matching .so filename. Extensions migrated in part 2: * dom * exif * fileinfo * ffi
12 lines
263 B
PHP
12 lines
263 B
PHP
--TEST--
|
|
PHP crash when zend_multibyte_encoding_converter returns (size_t)-1)
|
|
--EXTENSIONS--
|
|
exif
|
|
--FILE--
|
|
<?php
|
|
$infile = __DIR__.'/exif_encoding_crash.jpg';
|
|
$exif_data = exif_read_data($infile);
|
|
echo "*** no core dump ***\n";
|
|
?>
|
|
--EXPECT--
|
|
*** no core dump ***
|