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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:38:00 UTC 2017


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

The following commit has been merged in the master branch:
commit 0ed9ecd922878a929f8c48719aaf658d1e196f9f
Author: Andreas Huggel <ahuggel at gmx.net>
Date:   Sun Nov 5 11:12:19 2006 +0000

    Initialise tm_isdst to -1 when converting a date/time string. Fixes #493.
---
 src/actions.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/actions.cpp b/src/actions.cpp
index 15b7ac4..9314708 100644
--- a/src/actions.cpp
+++ b/src/actions.cpp
@@ -1454,6 +1454,7 @@ namespace {
             || timeStr[13] != ':' || timeStr[16] != ':') return 3;
         if (0 == tm) return 4;
         memset(tm, 0x0, sizeof(struct tm));
+        tm->tm_isdst = -1;
 
         long tmp;
         if (!Util::strtol(timeStr.substr(0,4).c_str(), tmp)) return 5;

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list