[libpng17] Removed or marked PNG_UNUSED some harmless "dead assignments"

reported by clang scan-build.
This commit is contained in:
Glenn Randers-Pehrson
2013-11-25 11:08:56 -06:00
parent b1f0c7d0e5
commit 7ebb353944
5 changed files with 21 additions and 15 deletions

View File

@@ -3794,7 +3794,6 @@ png_read_filter_row_paeth_1byte_pixel(png_row_infop row_info, png_bytep row,
/* Calculate the current pixel in a, and move the previous row pixel to c
* for the next time round the loop
*/
c = b;
a += *row;
*row++ = (png_byte)a;
}