summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_loop.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/testing/testing_api_loop.c
parent042e5cafd7b7748dafc5ce243267dc73abd45df7 (diff)
downloadexchange-ed5b98a2c2308fbd44b906a30286d2689fd304dd.tar.gz
exchange-ed5b98a2c2308fbd44b906a30286d2689fd304dd.tar.bz2
exchange-ed5b98a2c2308fbd44b906a30286d2689fd304dd.zip
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/testing/testing_api_loop.c')
-rw-r--r--src/testing/testing_api_loop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing/testing_api_loop.c b/src/testing/testing_api_loop.c
index af4a63c6a..fceff4234 100644
--- a/src/testing/testing_api_loop.c
+++ b/src/testing/testing_api_loop.c
@@ -355,7 +355,7 @@ do_shutdown (void *cls)
TALER_FAKEBANK_stop (is->fakebank);
is->fakebank = NULL;
}
- GNUNET_free_non_null (is->commands);
+ GNUNET_free (is->commands);
}
@@ -813,7 +813,7 @@ TALER_TESTING_setup (TALER_TESTING_Main main_cb,
&main_ctx);
if (NULL != is.final_cleanup_cb)
is.final_cleanup_cb (is.final_cleanup_cb_cls);
- GNUNET_free_non_null (main_ctx.exchange_url);
+ GNUNET_free (main_ctx.exchange_url);
GNUNET_SIGNAL_handler_uninstall (shc_chld);
GNUNET_DISK_pipe_close (sigpipe);
sigpipe = NULL;