From bc1abeac2642ed704a93b3e02f06ff788f29cb99 Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Mon, 2 May 2016 20:51:59 +0000 Subject: [PATCH] #1108 Discovered another embedded tiff tag SubIFDs --- src/tiffimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tiffimage.cpp b/src/tiffimage.cpp index 2f2b063d..69d31ca5 100644 --- a/src/tiffimage.cpp +++ b/src/tiffimage.cpp @@ -569,7 +569,7 @@ namespace Exiv2 { sp = kount == count ? "" : " ..."; out << sp << std::endl; - if ( option == kpsRecursive && tag == 0x8769 /* ExifTag */ ) { + if ( option == kpsRecursive && (tag == 0x8769 /* ExifTag */ || tag == 0x014a/*SubIFDs*/ ) ) { size_t restore = io.tell(); printIFDStructure(io,out,option,Offset,bSwap,c,depth); io.seek(restore,BasicIo::beg);