aboutsummaryrefslogtreecommitdiff
path: root/src/lib/exchange_api_common.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-05 16:56:41 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:56:41 +0200
commite428783e2e0295186dc4eae273df8a3f8b75df60 (patch)
tree92767e4394eb2576fa54f0558344769379e79e49 /src/lib/exchange_api_common.c
parent9c752b3d031dbbb06544553dc71fcfebfe7fdb05 (diff)
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/lib/exchange_api_common.c')
-rw-r--r--src/lib/exchange_api_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/exchange_api_common.c b/src/lib/exchange_api_common.c
index 07f5e187..2cde8d13 100644
--- a/src/lib/exchange_api_common.c
+++ b/src/lib/exchange_api_common.c
@@ -427,8 +427,8 @@ TALER_EXCHANGE_free_reserve_history (
switch (rhistory[i].type)
{
case TALER_EXCHANGE_RTT_CREDIT:
- GNUNET_free_non_null (rhistory[i].details.in_details.wire_reference);
- GNUNET_free_non_null (rhistory[i].details.in_details.sender_url);
+ GNUNET_free (rhistory[i].details.in_details.wire_reference);
+ GNUNET_free (rhistory[i].details.in_details.sender_url);
break;
case TALER_EXCHANGE_RTT_WITHDRAWAL:
break;