exchange

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

commit feb57a2ebc251cb3cbe687875575174db4571863
parent 0522f86b0d2634d9496516349dddb743630ea22e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun,  8 Dec 2024 03:26:10 +0100

ref bug #9373

Diffstat:
Msrc/exchange/taler-exchange-httpd_batch-deposit.c | 2+-
Msrc/exchangedb/pg_add_policy_fulfillment_proof.c | 2+-
Msrc/exchangedb/pg_batch_ensure_coin_known.c | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd_batch-deposit.c b/src/exchange/taler-exchange-httpd_batch-deposit.c @@ -318,7 +318,7 @@ batch_deposit_transaction (void *cls, bdc->policy_details.fulfillment_state != TALER_PolicyFulfillmentSuccess; } - /* FIXME: replace by batch insert! */ + /* FIXME-#9373: replace by batch insert! */ for (unsigned int i = 0; i<bdc->bd.num_cdis; i++) { const struct TALER_EXCHANGEDB_CoinDepositInformation *cdi diff --git a/src/exchangedb/pg_add_policy_fulfillment_proof.c b/src/exchangedb/pg_add_policy_fulfillment_proof.c @@ -55,7 +55,7 @@ TEH_PG_add_policy_fulfillment_proof ( enum GNUNET_DB_QueryStatus qs; struct PostgresClosure *pg = cls; size_t count = fulfillment->details_count; - /* FIXME: this seems to be prone to VLA attacks */ + /* FIXME[Oec]: this seems to be prone to VLA attacks */ struct GNUNET_HashCode hcs[GNUNET_NZL (count)]; /* Create the sorted policy_hash_codes */ diff --git a/src/exchangedb/pg_batch_ensure_coin_known.c b/src/exchangedb/pg_batch_ensure_coin_known.c @@ -18,7 +18,7 @@ * @brief Implementation of the batch_ensure_coin_known function for Postgres * @author Christian Grothoff * - * FIXME: use the array support for postgres to simplify this code! + * FIXME-#9373: use the array support for postgres to simplify this code! * */ #include "platform.h"