xref: /PHP-5.5/ext/gd/tests/libgd00094.phpt (revision 436a7a97)
1--TEST--
2libgd #94 (imagecreatefromxbm 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 = imagecreatefromxbm(dirname(__FILE__) . '/libgd00094.xbm');
11var_dump($im);
12?>
13--EXPECTF--
14Warning: imagecreatefromxbm(): gd warning: product of memory allocation multiplication would exceed INT_MAX, failing operation gracefully
15 in %slibgd00094.php on line %d
16
17Warning: imagecreatefromxbm(): '%slibgd00094.xbm' is not a valid XBM file in %slibgd00094.php on line %d
18bool(false)
19
20