[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:40:46 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=4c17bc1
The following commit has been merged in the master branch:
commit 4c17bc16b08dae95d035a0b8fbdd359316780dc6
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Wed Sep 2 13:33:32 2009 +0000
#647: Fixed type of offset which may be negative.
---
src/tiffvisitor.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tiffvisitor.cpp b/src/tiffvisitor.cpp
index bfd30c0..07c7606 100644
--- a/src/tiffvisitor.cpp
+++ b/src/tiffvisitor.cpp
@@ -1313,7 +1313,7 @@ namespace Exiv2 {
}
p += 4;
uint32_t size = typeSize * count;
- uint32_t offset = getLong(p, byteOrder());
+ int32_t offset = getLong(p, byteOrder());
byte* pData = p;
if (size > 4 && baseOffset() + offset >= size_) {
#ifndef SUPPRESS_WARNINGS
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list