1--TEST-- 2libgd #101 (imagecreatefromgd can crash if gdImageCreate fails) 3--SKIPIF-- 4<?php 5 if (!extension_loaded('gd')) die("skip gd extension not available\n"); 6 if (!GD_BUNDLED) die("skip requires bundled GD library\n"); 7?> 8--FILE-- 9<?php 10$im = imagecreatefromgd(dirname(__FILE__) . '/libgd00101.gd'); 11var_dump($im); 12?> 13--EXPECTF-- 14Warning: imagecreatefromgd(): gd warning: product of memory allocation multiplication would exceed INT_MAX, failing operation gracefully 15 in %slibgd00101.php on line %d 16 17Warning: imagecreatefromgd(): '%slibgd00101.gd' is not a valid GD file in %slibgd00101.php on line %d 18bool(false) 19