exchange

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

commit e3089761ef26659596b7d6236afe1d7fe8cc14a4
parent 2918448338647659e899d485acc659ab095be51c
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 16 Jun 2021 11:10:06 +0200

-fix (soft) assertion failure

Diffstat:
Msrc/exchange/taler-exchange-httpd_keys.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd_keys.c b/src/exchange/taler-exchange-httpd_keys.c @@ -1536,6 +1536,9 @@ finish_keys_response (struct TEH_KeyStateHandle *ksh) "Failed to generate key response data for %s\n", GNUNET_STRINGS_absolute_time_to_string (last_cpd)); GNUNET_CRYPTO_hash_context_abort (hash_context); + /* drain heap before destroying it */ + while (NULL != (dk = GNUNET_CONTAINER_heap_remove_root (heap))) + /* intentionally empty */; GNUNET_CONTAINER_heap_destroy (heap); json_decref (denoms); json_decref (sctx.signkeys);