mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
70650810ad
(2.0.34 or 2.0.35) work.
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
|