[Xfce4-commits] [apps/orage] 01/01: 4.11.2.3 Coverity fix 31725 uninitialized variable used
noreply at xfce.org
noreply at xfce.org
Tue Feb 24 13:47:19 CET 2015
This is an automated email from the git hooks/post-receive script.
juha pushed a commit to branch master
in repository apps/orage.
commit e5e6986335b0698df14a2c332afb89716e342010
Author: Juha Kautto <juha at xfce.org>
Date: Tue Feb 24 14:45:58 2015 +0200
4.11.2.3 Coverity fix 31725 uninitialized variable used
Variable initialization added just in case.
---
configure.in.in | 2 +-
tz_convert/tz_convert.c | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/configure.in.in b/configure.in.in
index 21676c8..d2a0c3b 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -9,7 +9,7 @@ dnl Written for Xfce by Juha Kautto <juha at xfce.org>
dnl
dnl Version information
-m4_define([orage_version], [4.11.2.2-git])
+m4_define([orage_version], [4.11.2.3-git])
m4_define([gtk_minimum_version], [2.14.0])
m4_define([xfce_minimum_version], [4.8.0])
diff --git a/tz_convert/tz_convert.c b/tz_convert/tz_convert.c
index b93bcdf..aaca556 100644
--- a/tz_convert/tz_convert.c
+++ b/tz_convert/tz_convert.c
@@ -495,7 +495,8 @@ struct ical_timezone_data wit_get_data(int i
, struct ical_timezone_data *prev) {
unsigned long tc_time;
unsigned int tct_i, abbr_i;
- struct ical_timezone_data data;
+ struct ical_timezone_data
+ data = { {0, 0, 0, 0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, NULL};
/* get timechange time */
in_head = begin_timechanges;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list