diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-07-05 16:56:41 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-07-05 16:56:41 +0200 |
commit | e428783e2e0295186dc4eae273df8a3f8b75df60 (patch) | |
tree | 92767e4394eb2576fa54f0558344769379e79e49 /src/testing/testing_api_loop.c | |
parent | 9c752b3d031dbbb06544553dc71fcfebfe7fdb05 (diff) |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing/testing_api_loop.c b/src/testing/testing_api_loop.c index 9b494da0..992dcbfd 100644 --- a/src/testing/testing_api_loop.c +++ b/src/testing/testing_api_loop.c @@ -354,7 +354,7 @@ do_shutdown (void *cls) TALER_FAKEBANK_stop (is->fakebank); is->fakebank = NULL; } - GNUNET_free_non_null (is->commands); + GNUNET_free (is->commands); } @@ -812,7 +812,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; |