gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: fix uninit ret


From: gnunet
Subject: [taler-exchange] branch master updated: fix uninit ret
Date: Thu, 13 Feb 2020 20:43:10 +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 d798da08 fix uninit ret
d798da08 is described below

commit d798da08d61a6896b539e633a11afc9ab0179eed
Author: Christian Grothoff <address@hidden>
AuthorDate: Thu Feb 13 20:43:07 2020 +0100

    fix uninit ret
---
 src/exchange/taler-exchange-httpd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd.c 
b/src/exchange/taler-exchange-httpd.c
index 426c4865..6f021d72 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -1086,8 +1086,8 @@ main (int argc,
   }
 
   /* initialize #internal_key_state with an RC of 1 */
-  if (GNUNET_OK ==
-      TEH_KS_init ())
+  ret = TEH_KS_init ();
+  if (GNUNET_OK == ret)
   {
 #if HAVE_DEVELOPER
     if (NULL != input_filename)

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



reply via email to

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