Commit adec20c8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

png: fix variable clobber due to long jump

parent 99d4a4fd
......@@ -198,7 +198,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
png_structp p_png;
png_infop p_info, p_end_info;
png_bytep *p_row_pointers = NULL;
png_bytep *volatile p_row_pointers = NULL;
if( !pp_block || !*pp_block ) return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment