exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 7b258d4bdfd8511e75637b5ed623cd1971e7c873
parent e352fdd356dd3d78c992b9355e68b392cb9d10c2
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 21 Jul 2023 15:22:46 +0200

-fix crash

Diffstat:
Msrc/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 @@ -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 (); }