diff options
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/testing_api_loop.c | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/src/testing/testing_api_loop.c b/src/testing/testing_api_loop.c index e9ccdb81..5f30f71e 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; +  }  } | 
