From ec8e3fad206fe1f355faa76193f7d891dad84791 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 26 Feb 2020 23:21:08 +0100 Subject: fix shutdown logic if shutdown happens during startup --- src/testing/testing_api_loop.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/testing') diff --git a/src/testing/testing_api_loop.c b/src/testing/testing_api_loop.c index e9ccdb81c..5f30f71e9 100644 --- a/src/testing/testing_api_loop.c +++ b/src/testing/testing_api_loop.c @@ -693,6 +693,16 @@ do_abort (void *cls) TALER_EXCHANGE_disconnect (is->exchange); is->exchange = NULL; } + if (NULL != is->ctx) + { + GNUNET_CURL_fini (is->ctx); + is->ctx = NULL; + } + if (NULL != is->rc) + { + GNUNET_CURL_gnunet_rc_destroy (is->rc); + is->rc = NULL; + } } -- cgit v1.2.3