mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng15] Relocated a misplaced "}" in png_reciprocal2().
This commit is contained in:
parent
193eb0b717
commit
74aa31a7c5
5
ANNOUNCE
5
ANNOUNCE
@ -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
|
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.
|
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).
|
Allow user to call png_get_IHDR() with NULL arguments (Reuben Hawkins).
|
||||||
Rebuilt configure scripts with automake-1.15 and libtool-2.4.6
|
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
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
3
CHANGES
3
CHANGES
@ -4310,7 +4310,8 @@ Version 1.5.22beta03 [February 21, 2015]
|
|||||||
Allow user to call png_get_IHDR() with NULL arguments (Reuben Hawkins).
|
Allow user to call png_get_IHDR() with NULL arguments (Reuben Hawkins).
|
||||||
Rebuilt configure scripts with automake-1.15 and libtool-2.4.6
|
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
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
26
png.c
26
png.c
@ -661,13 +661,13 @@ png_get_copyright(png_const_structp png_ptr)
|
|||||||
#else
|
#else
|
||||||
# ifdef __STDC__
|
# ifdef __STDC__
|
||||||
return PNG_STRING_NEWLINE \
|
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) 1998-2015 Glenn Randers-Pehrson" PNG_STRING_NEWLINE \
|
||||||
"Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
|
"Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
|
||||||
"Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
|
"Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
|
||||||
PNG_STRING_NEWLINE;
|
PNG_STRING_NEWLINE;
|
||||||
# else
|
# 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) 1998-2015 Glenn Randers-Pehrson\
|
||||||
Copyright (c) 1996-1997 Andreas Dilger\
|
Copyright (c) 1996-1997 Andreas Dilger\
|
||||||
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.";
|
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.)
|
if (r <= 2147483647. && r >= -2147483648.)
|
||||||
return (png_fixed_point)r;
|
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 */
|
return 0; /* overflow */
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user