diff options
| author | Özgür Kesim <oec-taler@kesim.org> | 2023-06-26 09:44:22 +0200 | 
|---|---|---|
| committer | Özgür Kesim <oec-taler@kesim.org> | 2023-06-26 09:44:22 +0200 | 
| commit | c5c3a44c25ad6d2411d18421ad5f4c1a312643a1 (patch) | |
| tree | cfbd4c671bfdfe982b377971112727ddb9e8ac07 /src/exchange/taler-exchange-httpd_age-withdraw.c | |
| parent | b87d1112ea479537bda5e1ba1e1100ee53315315 (diff) | |
-comment updates
Diffstat (limited to 'src/exchange/taler-exchange-httpd_age-withdraw.c')
| -rw-r--r-- | src/exchange/taler-exchange-httpd_age-withdraw.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/src/exchange/taler-exchange-httpd_age-withdraw.c b/src/exchange/taler-exchange-httpd_age-withdraw.c index e7f8b53f..6e337e5e 100644 --- a/src/exchange/taler-exchange-httpd_age-withdraw.c +++ b/src/exchange/taler-exchange-httpd_age-withdraw.c @@ -91,7 +91,11 @@ free_age_withdraw_context_resources (struct AgeWithdrawContext *awc)    GNUNET_free (awc->denom_hs);    GNUNET_free (awc->coin_evs);    GNUNET_free (awc->commitment.denom_serials); -  /* commitment.denom_serials and .h_coin_evs are stack allocated */ +  /* +   * Note: +   * awc->commitment.denom_sigs and .h_coin_evs were stack allocated and +   * .denom_pub_hashes is NULL for this context. +   */  } @@ -420,8 +424,6 @@ are_denominations_valid (    struct TEH_KeyStateHandle *ksh;    uint64_t *serials; -  GNUNET_assert (*denom_serials == NULL); -    ksh = TEH_keys_get_state ();    if (NULL == ksh)    {  | 
