[libpng15] Fixes for multiple calls to png_read_update_info.

These fixes attend to most of the errors revealed in pngvalid, however doing
the gamma work twice results in inaccuracies that can't be easily fixed.
There is now a warning in the code if this is going to happen.
This commit is contained in:
John Bowler
2011-10-14 18:19:47 -05:00
committed by Glenn Randers-Pehrson
parent 5c1905caae
commit 07772cba07
10 changed files with 130 additions and 78 deletions

View File

@@ -18,11 +18,11 @@ for opts in "--standard" "--standard --progressive-read" \
"--size" "--size --progressive-read" \
"--transform"
do
if ./pngvalid $opts >> pngtest-log.txt 2>&1
if ./pngvalid "$@" $opts >> pngtest-log.txt 2>&1
then
echo " PASS:" pngvalid $opts
echo " PASS: pngvalid" "$@" $opts
else
echo " FAIL:" pngvalid $opts
echo " FAIL: pngvalid" "$@" $opts
err=1
fi
done