1--TEST-- 2Bug #68735 fileinfo out-of-bounds memory access 3--EXTENSIONS-- 4fileinfo 5--FILE-- 6<?php 7 $test_file = __DIR__ . DIRECTORY_SEPARATOR . "bug68735.jpg"; 8 $f = new finfo; 9 10 var_dump($f->file($test_file)); 11 12?> 13--EXPECTF-- 14string(%d) "JPEG image data, JFIF standard 1.01, resolution (DPI), density 180x52, segment length 16, comment: "%S"" 15