mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
a375d54785
Cf. PR #6787. Closes GH-6994.
13 lines
216 B
PHP
13 lines
216 B
PHP
--TEST--
|
|
Bug #72696 (imagefilltoborder stackoverflow on truecolor images)
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatetruecolor(10, 10);
|
|
imagefilltoborder($im, 0, 0, 1, -2);
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|