mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
16 lines
242 B
PHP
16 lines
242 B
PHP
--TEST--
|
|
Bug #39082 (Output image to stdout segfaults).
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('gd')) {
|
|
die("skip gd extension not available\n");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatetruecolor(1,1);
|
|
imagegif($im);
|
|
?>
|
|
--EXPECTF--
|
|
GIF87a%s
|