* libtiff/tif_dirread.c (TIFFReadDirEntryOutputErr): Incorrect

count for tag should be a warning rather than an error since
errors terminate processing.
This commit is contained in:
Bob Friesenhahn 2014-08-31 20:32:53 +00:00
parent f6fc518396
commit 9885124f1e
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2014-08-31 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tif_dirread.c (TIFFReadDirEntryOutputErr): Incorrect
count for tag should be a warning rather than an error since
errors terminate processing.
2014-06-07 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* tools/tiff2rgba.c (]): Fixed tiff2rgba usage message in that zip

View File

@ -1,4 +1,4 @@
/* $Id: tif_dirread.c,v 1.178 2012-08-19 16:56:34 bfriesen Exp $ */
/* $Id: tif_dirread.c,v 1.179 2014-08-31 20:32:53 bfriesen Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@ -3374,7 +3374,7 @@ static void TIFFReadDirEntryOutputErr(TIFF* tif, enum TIFFReadDirEntryErr err, c
} else {
switch (err) {
case TIFFReadDirEntryErrCount:
TIFFErrorExt(tif->tif_clientdata, module,
TIFFWarningExt(tif->tif_clientdata, module,
"Incorrect count for \"%s\"; tag ignored",
tagname);
break;