mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
a375d54785
Cf. PR #6787. Closes GH-6994.
14 lines
188 B
PHP
14 lines
188 B
PHP
--TEST--
|
|
Bug #72227: imagescale out-of-bounds read
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
|
|
$img = imagecreatetruecolor ( 100, 100);
|
|
imagescale($img, 13, 1, IMG_BICUBIC);
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|