mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
a375d54785
Cf. PR #6787. Closes GH-6994.
13 lines
217 B
PHP
13 lines
217 B
PHP
--TEST--
|
|
Bug #73968 (Premature failing of XBM reading)
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatefromxbm(__DIR__ . DIRECTORY_SEPARATOR . 'bug73968.xbm');
|
|
var_dump($im);
|
|
?>
|
|
--EXPECT--
|
|
object(GdImage)#1 (0) {
|
|
}
|