exchange

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

commit 2d10804884d1308057f4355592b1df1f32cfb148
parent 65b5442f0d73248c310e9d310abf7fc9e78081c2
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Fri, 14 Aug 2026 22:39:37 +0200

ensure to NULL on failure

Diffstat:
Msrc/auditor/report-lib.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/auditor/report-lib.c b/src/auditor/report-lib.c @@ -178,6 +178,7 @@ TALER_ARL_get_denomination_info_by_hash ( { enum GNUNET_DB_QueryStatus qs; + *issuep = NULL; if (NULL == denominations) { denominations = GNUNET_CONTAINER_multihashmap_create (256, @@ -261,6 +262,7 @@ TALER_ARL_get_denomination_info_by_serial ( enum GNUNET_DB_QueryStatus qs; struct GNUNET_Uuid uuid; + *issuep = NULL; serial_to_uuid (denom_serial, &uuid); if (NULL == denominations_by_serial)