php-src/ext/gd/tests/bug72337.phpt

15 lines
296 B
Plaintext
Raw Normal View History

--TEST--
#72337 segfault in imagescale with new dimensions being <=0)
--SKIPIF--
<?php
if (!function_exists('imagescale')) die("skip gd extension not available\n");
?>
--FILE--
<?php
$im = imagecreatetruecolor(1, 1);
imagescale($im, 0, 0, IMG_BICUBIC_FIXED);
echo "OK";
?>
--EXPECT--
OK