mirror of
https://github.com/php/php-src.git
synced 2026-04-25 00:48:25 +02:00
a555cc0b3d
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
13 lines
336 B
PHP
13 lines
336 B
PHP
--TEST--
|
|
PHP crash when zend_multibyte_encoding_converter returns (size_t)-1)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
|
|
--FILE--
|
|
<?php
|
|
$infile = __DIR__.'/exif_encoding_crash.jpg';
|
|
$exif_data = exif_read_data($infile);
|
|
echo "*** no core dump ***\n";
|
|
?>
|
|
--EXPECT--
|
|
*** no core dump ***
|