[libpng15] Relocated a misplaced "}" in png_reciprocal2().

This commit is contained in:
Glenn Randers-Pehrson 2015-02-24 12:36:13 -06:00
parent 193eb0b717
commit 74aa31a7c5
3 changed files with 18 additions and 16 deletions

View File

@ -1,5 +1,5 @@
Libpng 1.5.22beta04 - February 21, 2015
Libpng 1.5.22beta04 - February 24, 2015
This is not intended to be a public release. It will be replaced
within a few weeks by a public version or by another test version.
@ -46,7 +46,8 @@ Version 1.5.22beta03 [February 21, 2015]
Allow user to call png_get_IHDR() with NULL arguments (Reuben Hawkins).
Rebuilt configure scripts with automake-1.15 and libtool-2.4.6
Version 1.5.22beta04 [February 21, 2015]
Version 1.5.22beta04 [February 24, 2015]
Relocated a misplaced "}" in png_reciprocal2().
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -4310,7 +4310,8 @@ Version 1.5.22beta03 [February 21, 2015]
Allow user to call png_get_IHDR() with NULL arguments (Reuben Hawkins).
Rebuilt configure scripts with automake-1.15 and libtool-2.4.6
Version 1.5.22beta04 [February 21, 2015]
Version 1.5.22beta04 [February 24, 2015]
Relocated a misplaced "}" in png_reciprocal2().
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

26
png.c
View File

@ -661,13 +661,13 @@ png_get_copyright(png_const_structp png_ptr)
#else
# ifdef __STDC__
return PNG_STRING_NEWLINE \
"libpng version 1.5.22beta04 - February 21, 2015" PNG_STRING_NEWLINE \
"libpng version 1.5.22beta04 - February 24, 2015" PNG_STRING_NEWLINE \
"Copyright (c) 1998-2015 Glenn Randers-Pehrson" PNG_STRING_NEWLINE \
"Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
"Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
PNG_STRING_NEWLINE;
# else
return "libpng version 1.5.22beta04 - February 21, 2015\
return "libpng version 1.5.22beta04 - February 24, 2015\
Copyright (c) 1998-2015 Glenn Randers-Pehrson\
Copyright (c) 1996-1997 Andreas Dilger\
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.";
@ -2138,18 +2138,18 @@ png_reciprocal2(png_fixed_point a, png_fixed_point b)
if (r <= 2147483647. && r >= -2147483648.)
return (png_fixed_point)r;
#else
/* This may overflow because the range of png_fixed_point isn't
* symmetric, but this API is only used for the product of file and
* screen gamma so it doesn't matter that the smallest number it can
* produce is 1/21474, not 1/100000
*/
png_fixed_point res = png_product2(a, b);
if (res != 0)
return png_reciprocal(res);
#endif
}
#else
/* This may overflow because the range of png_fixed_point isn't
* symmetric, but this API is only used for the product of file and
* screen gamma so it doesn't matter that the smallest number it can
* produce is 1/21474, not 1/100000
*/
png_fixed_point res = png_product2(a, b);
if (res != 0)
return png_reciprocal(res);
#endif
return 0; /* overflow */
}