summaryrefslogtreecommitdiff
path: root/ext/gd/tests/bug74435.phpt
blob: 9d11eb3839f2dc50775e1f44ba1ad11863c757da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--TEST--
Bug #74435 (Buffer over-read into uninitialized memory)
--SKIPIF--
<?php
if (!extension_loaded('gd')) die('skip gd extension not available');
?>
--FILE--
<?php
$im = imagecreatefromgif(__DIR__ . DIRECTORY_SEPARATOR . 'bug74435.gif');
var_dump($im);
$width = imagesx($im);
$height = imagesy($im);
for ($i = 0; $i < $width; $i += 16) {
    for ($j = 0; $j < $height; $j += 16) {
        if (($index = imagecolorat($im, $i, $j)) >= 2) {
            list($red, $green, $blue, $alpha) = array_values(imagecolorsforindex($im, $index));
            if ($red !== 0 || $green !== 0 || $blue !== 0 || $alpha !== 0) {
                echo "unexpected color at ($i, $j)\n";
            }
        }
    }
}
?>
===DONE===
--EXPECTF--
resource(%d) of type (gd)
===DONE===