From: Dan F. <dfa...@us...> - 2009-12-18 02:18:39
|
Update of /cvsroot/libexif/libexif/libexif In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv7801/libexif Modified Files: exif-data.c Log Message: Don't warn "No thumbnail but entries on thumbnail." unless there actually are entries. Index: exif-data.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-data.c,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -d -r1.125 -r1.126 --- exif-data.c 26 Nov 2009 05:24:27 -0000 1.125 +++ exif-data.c 18 Dec 2009 02:18:26 -0000 1.126 @@ -1255,7 +1255,7 @@ fix_func (ExifContent *c, void *UNUSED(d case EXIF_IFD_1: if (c->parent->data) exif_content_fix (c); - else { + else if (c->count) { exif_log (c->parent->priv->log, EXIF_LOG_CODE_DEBUG, "exif-data", "No thumbnail but entries on thumbnail. These entries have been " "removed."); |