gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-exchange] branch master updated: fix use of uninit v


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: fix use of uninit value
Date: Sun, 05 Mar 2017 17:37:00 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 6545739  fix use of uninit value
6545739 is described below

commit 65457396b358bf797420bfd9af552e3bde01640f
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun Mar 5 17:36:58 2017 +0100

    fix use of uninit value
---
 src/exchange-tools/taler-exchange-keyup.c | 5 ++---
 src/include/taler_exchangedb_plugin.h     | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/exchange-tools/taler-exchange-keyup.c 
b/src/exchange-tools/taler-exchange-keyup.c
index 29ccd44..f14e28b 100644
--- a/src/exchange-tools/taler-exchange-keyup.c
+++ b/src/exchange-tools/taler-exchange-keyup.c
@@ -922,9 +922,8 @@ create_wire_fee_for_method (void *cls,
 
   if (GNUNET_OK != *ret)
     return;
-  last_date = GNUNET_TIME_absolute_max (last_date,
-                                        GNUNET_TIME_absolute_add 
(lookahead_sign_stamp,
-                                                                  
max_duration_spend));
+  last_date = GNUNET_TIME_absolute_add (lookahead_sign_stamp,
+                                        max_duration_spend);
   GNUNET_asprintf (&section,
                    "exchange-wire-%s",
                    wiremethod);
diff --git a/src/include/taler_exchangedb_plugin.h 
b/src/include/taler_exchangedb_plugin.h
index e7ba06f..2beb0e3 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -1,6 +1,6 @@
 /*
   This file is part of TALER
-  Copyright (C) 2014, 2015, 2016 GNUnet e.V.
+  Copyright (C) 2014-2017 GNUnet e.V.
 
   TALER is free software; you can redistribute it and/or modify it under the
   terms of the GNU General Public License as published by the Free Software

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]