1--TEST-- 2Bug #60150 (Integer overflow during the parsing of invalid exif header) 3--SKIPIF-- 4<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?> 5--INI-- 6output_handler= 7zlib.output_compression=0 8--FILE-- 9<?php 10$infile = dirname(__FILE__).'/bug60150.jpg'; 11var_dump(exif_read_data($infile)); 12?> 13===DONE=== 14--EXPECTF-- 15Warning: exif_read_data(bug60150.jpg): Process tag(x9003=DateTimeOri): Illegal pointer offset(%s) in %s on line %d 16 17Warning: exif_read_data(bug60150.jpg): Error reading from file: got=x%x(=%d) != itemlen-%d=x%x(=%d) in %s on line %d 18 19Warning: exif_read_data(bug60150.jpg): Invalid JPEG file in %s on line %d 20bool(false) 21===DONE=== 22