aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/plugin_exchangedb_common.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-05 16:58:43 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:58:43 +0200
commited5b98a2c2308fbd44b906a30286d2689fd304dd (patch)
treea221b9c784b4e004eb5972e18516653d1aea6a5c /src/exchangedb/plugin_exchangedb_common.c
parent042e5cafd7b7748dafc5ce243267dc73abd45df7 (diff)
downloadexchange-ed5b98a2c2308fbd44b906a30286d2689fd304dd.tar.xz
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_common.c')
-rw-r--r--src/exchangedb/plugin_exchangedb_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchangedb/plugin_exchangedb_common.c b/src/exchangedb/plugin_exchangedb_common.c
index ce425f824..6db0c0e02 100644
--- a/src/exchangedb/plugin_exchangedb_common.c
+++ b/src/exchangedb/plugin_exchangedb_common.c
@@ -40,8 +40,8 @@ common_free_reserve_history (void *cls,
struct TALER_EXCHANGEDB_BankTransfer *bt;
bt = rh->details.bank;
- GNUNET_free_non_null (bt->sender_account_details);
- GNUNET_free_non_null (bt->wire_reference);
+ GNUNET_free (bt->sender_account_details);
+ GNUNET_free (bt->wire_reference);
GNUNET_free (bt);
break;
}
@@ -68,7 +68,7 @@ common_free_reserve_history (void *cls,
struct TALER_EXCHANGEDB_ClosingTransfer *closing;
closing = rh->details.closing;
- GNUNET_free_non_null (closing->receiver_account_details);
+ GNUNET_free (closing->receiver_account_details);
GNUNET_free (closing);
break;
}