File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 5
5
- Core:
6
6
. Fixed Haiku ZTS build. (David Carlier)
7
7
8
+ - GD:
9
+ . Fixed libpng warning when loading interlaced images. (Brett)
10
+
8
11
- Iconv:
9
12
. Fixed bug GH-7953 (ob_clean() only does not set Content-Encoding). (cmb)
10
13
. Fixed bug GH-7980 (Unexpected result for iconv_mime_decode). (cmb)
Original file line number Diff line number Diff line change @@ -336,6 +336,11 @@ gdImagePtr gdImageCreateFromPngCtx (gdIOCtx * infile)
336
336
break ;
337
337
}
338
338
339
+ /* enable the interlace transform if supported */
340
+ #ifdef PNG_READ_INTERLACING_SUPPORTED
341
+ (void )png_set_interlace_handling (png_ptr );
342
+ #endif
343
+
339
344
png_read_update_info (png_ptr , info_ptr );
340
345
341
346
/* allocate space for the PNG image data */
You can’t perform that action at this time.
0 commit comments