mirror of
https://github.com/php/php-src.git
synced 2025-01-07 03:13:33 +08:00
20 lines
539 B
PHP
20 lines
539 B
PHP
--TEST--
|
|
Bug #48378 (Infinite recursion due to corrupt JPEG)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
|
|
--FILE--
|
|
<?php
|
|
exif_read_data(
|
|
dirname(__FILE__) . "/bug48378.jpeg",
|
|
"FILE,COMPUTED,ANY_TAG"
|
|
);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: exif_read_data(%s): Invalid IFD start in %s48378.php on line %d
|
|
|
|
Warning: exif_read_data(%s): Error reading from file: got=x08B4(=2228) != itemlen-2=x1FFE(=8190) in %s48378.php on line %d
|
|
|
|
Warning: exif_read_data(%s): Invalid JPEG file in %s48378.php on line %d
|
|
|
|
|