[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:43:33 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=3c088fb

The following commit has been merged in the master branch:
commit 3c088fb4068268d85850167c8ed8e098a4d39393
Author: Robin Mills <robin at clanmills.com>
Date:   Fri Jan 4 05:00:54 2013 +0000

    Fix: http://dev.exiv2.org/boards/3/topics/1337
---
 src/tiffcomposite.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/tiffcomposite.cpp b/src/tiffcomposite.cpp
index 8ec2ebf..c26a8b3 100644
--- a/src/tiffcomposite.cpp
+++ b/src/tiffcomposite.cpp
@@ -1846,6 +1846,11 @@ namespace Exiv2 {
         if (tag == 0x9286 && group == exifId && ti == undefined) {
             ti = comment;
         }
+        // http://dev.exiv2.org/boards/3/topics/1337
+        // Exif.NikonAFT.AFFineTuneAdj should be signedByte
+        if ( tag == 0x0002 && group == nikonAFTId && ti == unsignedByte ) {
+            ti = signedByte;
+        }
         return ti;
     }
 

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list