diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-07-05 16:58:43 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-07-05 16:58:43 +0200 |
commit | ed5b98a2c2308fbd44b906a30286d2689fd304dd (patch) | |
tree | a221b9c784b4e004eb5972e18516653d1aea6a5c /src/auditor/taler-helper-auditor-reserves.c | |
parent | 042e5cafd7b7748dafc5ce243267dc73abd45df7 (diff) |
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/auditor/taler-helper-auditor-reserves.c')
-rw-r--r-- | src/auditor/taler-helper-auditor-reserves.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auditor/taler-helper-auditor-reserves.c b/src/auditor/taler-helper-auditor-reserves.c index 3460515a2..0b140e740 100644 --- a/src/auditor/taler-helper-auditor-reserves.c +++ b/src/auditor/taler-helper-auditor-reserves.c @@ -1269,7 +1269,7 @@ verify_reserve_balance (void *cls, GNUNET_CONTAINER_multihashmap_remove (rc->reserves, key, rs)); - GNUNET_free_non_null (rs->sender_account); + GNUNET_free (rs->sender_account); GNUNET_free (rs); return ret; } |