1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/gd/tests/bug69024.phpt

13 lines
201 B
PHP

--TEST--
Bug #69024 (imagescale segfault with palette based image)
--EXTENSIONS--
gd
--FILE--
<?php
$im = imagecreate(256, 256);
imagescale($im, 32, 32, IMG_BICUBIC);
echo "done\n";
?>
--EXPECT--
done