mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
13 lines
208 B
PHP
13 lines
208 B
PHP
--TEST--
|
|
#72337 segfault in imagescale with new dimensions being <=0)
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatetruecolor(1, 1);
|
|
imagescale($im, 0, 0, IMG_BICUBIC_FIXED);
|
|
echo "OK";
|
|
?>
|
|
--EXPECT--
|
|
OK
|