[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] 01/02: -check return value of MHD_run()
From: |
gnunet |
Subject: |
[taler-exchange] 01/02: -check return value of MHD_run() |
Date: |
Thu, 09 Jan 2025 16:35:36 +0100 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository exchange.
commit f0eb5249acaf165c5471fd58128bfdd39d6a705e
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Fri Dec 13 15:21:16 2024 +0100
-check return value of MHD_run()
---
src/bank-lib/fakebank.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c
index 41a30562f..eef5a8d6c 100644
--- a/src/bank-lib/fakebank.c
+++ b/src/bank-lib/fakebank.c
@@ -248,7 +248,8 @@ TALER_FAKEBANK_run_mhd_ (void *cls)
while (h->mhd_again)
{
h->mhd_again = false;
- MHD_run (h->mhd_bank);
+ GNUNET_assert (MHD_YES ==
+ MHD_run (h->mhd_bank));
}
#ifdef __linux__
GNUNET_assert (-1 == h->lp_event);
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.