gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: -fix fakebank shutdown sequence


From: gnunet
Subject: [taler-exchange] branch master updated: -fix fakebank shutdown sequence
Date: Sun, 22 Aug 2021 18:22:53 +0200

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 37f049b3 -fix fakebank shutdown sequence
37f049b3 is described below

commit 37f049b3bc98c72f68687e67f102ee5b06f9263d
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Aug 22 18:22:51 2021 +0200

    -fix fakebank shutdown sequence
---
 src/bank-lib/fakebank.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c
index 723cc8dc..eb6f4c79 100644
--- a/src/bank-lib/fakebank.c
+++ b/src/bank-lib/fakebank.c
@@ -1169,11 +1169,6 @@ free_account (void *cls,
 void
 TALER_FAKEBANK_stop (struct TALER_FAKEBANK_Handle *h)
 {
-  if (NULL != h->mhd_task)
-  {
-    GNUNET_SCHEDULER_cancel (h->mhd_task);
-    h->mhd_task = NULL;
-  }
   if (NULL != h->lp_task)
   {
     GNUNET_SCHEDULER_cancel (h->lp_task);
@@ -1224,6 +1219,11 @@ TALER_FAKEBANK_stop (struct TALER_FAKEBANK_Handle *h)
     MHD_stop_daemon (h->mhd_bank);
     h->mhd_bank = NULL;
   }
+  if (NULL != h->mhd_task)
+  {
+    GNUNET_SCHEDULER_cancel (h->mhd_task);
+    h->mhd_task = NULL;
+  }
   if (NULL != h->accounts)
   {
     GNUNET_CONTAINER_multihashmap_iterate (h->accounts,

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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