mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng16] Imported from libpng-1.6.33beta01.tar
This commit is contained in:
parent
d2b9af04ac
commit
50d2d49220
3
ANNOUNCE
3
ANNOUNCE
@ -26,9 +26,6 @@ Other information:
|
|||||||
Changes since the last public release (1.6.32):
|
Changes since the last public release (1.6.32):
|
||||||
Added PNGMINUS_UNUSED macro to contrib/pngminus/p*.c and added missing
|
Added PNGMINUS_UNUSED macro to contrib/pngminus/p*.c and added missing
|
||||||
parenthesis in contrib/pngminus/pnm2png.c (bug report by Christian Hesse).
|
parenthesis in contrib/pngminus/pnm2png.c (bug report by Christian Hesse).
|
||||||
Free row_ptr in PNG_CLEANUP macro in contrib/oss-fuzz/libpng_read_fuzzer.cc
|
|
||||||
Fixed off-by-one error in png_do_check_palette_indexes() (Bug report
|
|
||||||
by Mick P., Source Forge Issue #269).
|
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
3
CHANGES
3
CHANGES
@ -5997,9 +5997,6 @@ Version 1.6.32 [August 24, 2017]
|
|||||||
Version 1.6.33beta01 [August 28, 2017]
|
Version 1.6.33beta01 [August 28, 2017]
|
||||||
Added PNGMINUS_UNUSED macro to contrib/pngminus/p*.c and added missing
|
Added PNGMINUS_UNUSED macro to contrib/pngminus/p*.c and added missing
|
||||||
parenthesis in contrib/pngminus/pnm2png.c (bug report by Christian Hesse).
|
parenthesis in contrib/pngminus/pnm2png.c (bug report by Christian Hesse).
|
||||||
Free row_ptr in PNG_CLEANUP macro in contrib/oss-fuzz/libpng_read_fuzzer.cc
|
|
||||||
Fixed off-by-one error in png_do_check_palette_indexes() (Bug report
|
|
||||||
by Mick P., Source Forge Issue #269).
|
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
@ -392,7 +392,7 @@ BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if ((png_pixels = (png_byte *)
|
if ((png_pixels = (png_byte *)
|
||||||
malloc (row_bytes * height * sizeof (png_byte))) == NULL)
|
malloc ((size_t)row_bytes * (size_t)height * sizeof (png_byte))) == NULL)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
/* read data from PNM file */
|
/* read data from PNM file */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user