mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
20 lines
418 B
PHP
20 lines
418 B
PHP
--TEST--
|
|
Bug #77269 (Potential unsigned underflow in gdImageScale)
|
|
--EXTENSIONS--
|
|
gd
|
|
--SKIPIF--
|
|
<?php
|
|
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
|
|
?>
|
|
--INI--
|
|
memory_limit=2G
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreate(2**28, 1);
|
|
imagescale($im, 1, 1, IMG_TRIANGLE);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: imagescale():%S Product of memory allocation multiplication would exceed INT_MAX, failing operation gracefully
|
|
in %s on line %d
|