mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng16] Fixed cexcept.h in which GCC 5 now reports that one of the auto
variables in the Try macro needs to be volatile to prevent value being lost over the setjmp.
This commit is contained in:
committed by
Glenn Randers-Pehrson
parent
25bfb13770
commit
b780eba4e4
@@ -2167,7 +2167,7 @@ png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
|
||||
{
|
||||
png_bytep sp;
|
||||
png_bytep dp;
|
||||
int shift;
|
||||
unsigned int shift;
|
||||
int d;
|
||||
int value;
|
||||
png_uint_32 i;
|
||||
@@ -2205,7 +2205,7 @@ png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
|
||||
{
|
||||
png_bytep sp;
|
||||
png_bytep dp;
|
||||
int shift;
|
||||
unsigned int shift;
|
||||
int d;
|
||||
int value;
|
||||
png_uint_32 i;
|
||||
@@ -2242,7 +2242,7 @@ png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
|
||||
{
|
||||
png_bytep sp;
|
||||
png_bytep dp;
|
||||
int shift;
|
||||
unsigned int shift;
|
||||
int d;
|
||||
int value;
|
||||
png_uint_32 i;
|
||||
|
||||
Reference in New Issue
Block a user