commit d798da08d61a6896b539e633a11afc9ab0179eed parent 1448f97b5119f0cd163ce745c04601d0be45458b Author: Christian Grothoff <christian@grothoff.org> Date: Thu, 13 Feb 2020 20:43:07 +0100 fix uninit ret Diffstat:
| M | 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 @@ -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)