[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: -fix crash
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: -fix crash |
Date: |
Fri, 21 Jul 2023 15:22:49 +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 7b258d4b -fix crash
7b258d4b is described below
commit 7b258d4bdfd8511e75637b5ed623cd1971e7c873
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Fri Jul 21 15:22:46 2023 +0200
-fix crash
---
src/auditor/taler-helper-auditor-wire.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/auditor/taler-helper-auditor-wire.c
b/src/auditor/taler-helper-auditor-wire.c
index bfc465b0..e3753b59 100644
--- a/src/auditor/taler-helper-auditor-wire.c
+++ b/src/auditor/taler-helper-auditor-wire.c
@@ -1629,8 +1629,11 @@ begin_debit_audit (void)
static void
conclude_credit_history (void)
{
- GNUNET_CONTAINER_multihashmap_destroy (in_map);
- in_map = NULL;
+ if (NULL != in_map)
+ {
+ GNUNET_CONTAINER_multihashmap_destroy (in_map);
+ in_map = NULL;
+ }
/* credit done, now check debits */
begin_debit_audit ();
}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: -fix crash,
gnunet <=