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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:35:57 UTC 2017


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

The following commit has been merged in the master branch:
commit 23c0d08f8ffcb061b36750006190794274e68c2b
Author: Andreas Huggel <ahuggel at gmx.net>
Date:   Mon Jan 26 16:18:56 2004 +0000

    More code
---
 src/Makefile     |   4 +-
 src/exif.cpp     |  87 +++++++++++++++++++++++++++++++++++---
 src/exif.hpp     | 125 +++++++++++++++++++++++++++++++++++++++----------------
 src/exiftest.cpp |  99 ++++++++++++++++++++++++++-----------------
 src/tags.cpp     |  77 ++++++++++++++++++++++++++++------
 src/tags.hpp     |  90 ++++++++++++++++++++++++++++++++-------
 6 files changed, 374 insertions(+), 108 deletions(-)

diff --git a/src/Makefile b/src/Makefile
index a31ad33..e75a746 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -23,7 +23,7 @@
 #
 # RCS information
 #  $Name:  $
-#  $Revision: 1.4 $
+#  $Revision: 1.5 $
 #
 # Description:
 #  Do NOT change this file! All system specific settings and configs
@@ -58,7 +58,7 @@ CCHDR =
 CCSRC = exif.cpp tags.cpp utils.cpp
 
 # Add source files of applications to this list
-BINSRC = exiftest.cpp
+BINSRC = exiftest.cpp exifprint.cpp
 
 # **********************************************************************
 # Library
diff --git a/src/exif.cpp b/src/exif.cpp
index 663a7d3..619659b 100644
--- a/src/exif.cpp
+++ b/src/exif.cpp
@@ -25,7 +25,7 @@
 
   RCS information
    $Name:  $
-   $Revision: 1.8 $
+   $Revision: 1.9 $
  */
 // *****************************************************************************
 // included header files
@@ -217,6 +217,9 @@ namespace Exif {
         case signedRational:
             value = new ValueType<Rational>;
             break;
+        default:
+            value = new DataValue(typeId);
+            break;
         }
         return value;
     } // Value::create
@@ -271,6 +274,7 @@ namespace Exif {
     void AsciiValue::read(const std::string& buf)
     {
         value_ = buf;
+        if (value_[value_.size()-1] != '

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list