[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:44:58 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=00f2c6c
The following commit has been merged in the master branch:
commit 00f2c6cebd69d30abb792779157d7ed4b6a3a0f5
Author: Robin Mills <robin at clanmills.com>
Date: Fri Mar 27 12:42:37 2015 +0000
Fixed uninitialized variables in constructor.
---
src/Jzon.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Jzon.cpp b/src/Jzon.cpp
index 50729e0..89463f7 100644
--- a/src/Jzon.cpp
+++ b/src/Jzon.cpp
@@ -884,10 +884,10 @@ namespace Jzon
}
- Parser::Parser(Node &root) : root(root)
+ Parser::Parser(Node &root) : jsonSize(0), cursor(0), root(root)
{
}
- Parser::Parser(Node &root, const std::string &json) : root(root)
+ Parser::Parser(Node &root, const std::string &json) : jsonSize(0), cursor(0), root(root)
{
SetJson(json);
}
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list