[libpng16] Removed unreachable return statement after png_chunk_error()

in pngrutil.c
This commit is contained in:
Glenn Randers-Pehrson
2014-02-27 12:12:54 -06:00
parent 53c60fa94b
commit b8f433417f
3 changed files with 14 additions and 11 deletions

View File

@@ -227,10 +227,7 @@ png_crc_finish(png_structrp png_ptr, png_uint_32 skip)
}
else
{
png_chunk_error(png_ptr, "CRC error");
return (0);
}
return (1);
}