xref: /PHP-8.1/ext/gd/tests/bug39780.phpt (revision a375d547)
1--TEST--
2Bug #39780 (PNG image with CRC/data error raises a fatal error)
3--EXTENSIONS--
4gd
5--SKIPIF--
6<?php
7    if (!GD_BUNDLED) die("skip requires bundled GD library\n");
8?>
9--FILE--
10<?php
11
12$im = imagecreatefrompng(__DIR__ . '/bug39780.png');
13var_dump($im);
14?>
15--EXPECTF--
16Warning: imagecreatefrompng(): gd-png:  fatal libpng error: Read Error: truncated data in %s on line %d
17
18Warning: imagecreatefrompng(): gd-png error: setjmp returns error condition in %s on line %d
19
20Warning: imagecreatefrompng(): "%s" is not a valid PNG file in %s on line %d
21bool(false)
22