[libpng16] Use PNG_UINT_31_MAX instead of constant 0x7fffffff in timepng.c

This commit is contained in:
Glenn Randers-Pehrson 2016-04-29 21:48:52 -05:00
parent 8c754b1834
commit 21939d36ec

View File

@ -397,7 +397,7 @@ int main(int argc, char **argv)
#ifdef __COVERITY__
else
{
nfiles &= 0x7fffffff;
nfiles &= PNG_UINT_31_MAX;
}
#endif