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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:42:31 UTC 2017


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

The following commit has been merged in the master branch:
commit 640921e6c0eeb681a45e1d9514e013ab49d79a77
Author: vog <vog at notjusthosting.com>
Date:   Thu Jun 30 09:19:39 2011 +0000

    make cast in decodeBase64() more explicit
---
 src/preview.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/preview.cpp b/src/preview.cpp
index 2bd66c8..b78658d 100644
--- a/src/preview.cpp
+++ b/src/preview.cpp
@@ -891,7 +891,7 @@ namespace {
                 bufferPos--;
             }
             for (int bufferPos = 2; bufferPos >= 0 && destPos < destSize; bufferPos--, destPos++) {
-                dest.pData_[destPos] = (Exiv2::byte) (buffer >> (bufferPos * 8)) & 0xFF;
+                dest.pData_[destPos] = static_cast<byte>((buffer >> (bufferPos * 8)) & 0xFF);
             }
         }
         return dest;

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list