[libpng16] Added signed/unsigned 16-bit safety net. This removes the dubious

0x8000 flag definitions on 16-bit systems. They aren't supported
yet the defs *probably* work, however it seems much safer to do this
and be advised if anyone, contrary to advice, is building libpng 1.6
on a 16-bit system. It also adds back various switch default clauses
for GCC; GCC errors out if they are not present (with an appropriately
high level of warnings).
This commit is contained in:
John Bowler
2015-08-16 22:54:21 -05:00
committed by Glenn Randers-Pehrson
parent 8ba4b13c55
commit 751cee5ef1
4 changed files with 21 additions and 3 deletions

View File

@@ -1683,7 +1683,7 @@ decode_gamma(png_image_read_control *display, png_uint_32 value, int encoding)
value *= 257;
break;
#ifdef PNG_DEBUG
#ifdef __GNUC__
default:
png_error(display->image->opaque->png_ptr,
"unexpected encoding (internal error)");
@@ -2858,7 +2858,7 @@ png_image_read_colormap(png_voidp argument)
png_set_scale_16(png_ptr);
break;
#ifdef PNG_DEBUG
#ifdef __GNUC__
default:
png_error(png_ptr, "bad data option (internal error)");
#endif
@@ -3630,7 +3630,7 @@ png_image_read_background(png_voidp argument)
}
break;
#ifdef PNG_DEBUG
#ifdef __GNUC__
default:
png_error(png_ptr, "unexpected bit depth");
#endif