summaryrefslogtreecommitdiff
path: root/ext/gd/tests/bug72337.phpt
blob: 7b8a86957733a99d6b40b8e7218e0a0cbe970300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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