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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:37:01 UTC 2017


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

The following commit has been merged in the master branch:
commit c1a678a8830c9b8011f5100741de38893ae862e6
Author: Andreas Huggel <ahuggel at gmx.net>
Date:   Tue Mar 8 14:43:47 2005 +0000

    Fixed test for stat return value
---
 src/basicio.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/basicio.cpp b/src/basicio.cpp
index 467e38e..9ab0aa2 100644
--- a/src/basicio.cpp
+++ b/src/basicio.cpp
@@ -205,7 +205,7 @@ namespace Exiv2 {
         struct stat buf;
         int ret = stat(path_.c_str(), &buf);
         
-        if (ret == 0) return -1;
+        if (ret != 0) return -1;
         return buf.st_size; 
     }
 

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list