mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
a375d54785
Cf. PR #6787. Closes GH-6994.
13 lines
235 B
PHP
13 lines
235 B
PHP
--TEST--
|
|
Bug #79067 (gdTransformAffineCopy() may use unitialized values)
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
$matrix = [1, 1, 1, 1, 1, 1];
|
|
$src = imagecreatetruecolor(8, 8);
|
|
var_dump(imageaffine($src, $matrix));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|