bug60150.phpt 576 B

12345678910111213141516171819
  1. --TEST--
  2. Bug #60150 (Integer overflow during the parsing of invalid exif header)
  3. --EXTENSIONS--
  4. exif
  5. --INI--
  6. output_handler=
  7. zlib.output_compression=0
  8. --FILE--
  9. <?php
  10. $infile = __DIR__.'/bug60150.jpg';
  11. var_dump(exif_read_data($infile));
  12. ?>
  13. --EXPECTF--
  14. Warning: exif_read_data(bug60150.jpg): Process tag(x9003=DateTimeOriginal): Illegal pointer offset(%s) in %s on line %d
  15. Warning: exif_read_data(bug60150.jpg): Error reading from file: got=x%x(=%d) != itemlen-%d=x%x(=%d) in %s on line %d
  16. Warning: exif_read_data(bug60150.jpg): Invalid JPEG file in %s on line %d
  17. bool(false)