From 9a91e41070e368e929e7534c047c8360e60d1901 Mon Sep 17 00:00:00 2001 From: Anna Wimbauer Date: Mon, 27 Apr 2020 09:27:19 +0200 Subject: fixed nullpointer --- src/reclaim/plugin_rest_openid_connect.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/reclaim/plugin_rest_openid_connect.c b/src/reclaim/plugin_rest_openid_connect.c index 14a96ed19..295de0d97 100644 --- a/src/reclaim/plugin_rest_openid_connect.c +++ b/src/reclaim/plugin_rest_openid_connect.c @@ -576,8 +576,10 @@ cleanup_handle (struct RequestHandle *handle) json_decref (handle->oidc->response); GNUNET_free (handle->oidc); } - GNUNET_RECLAIM_attribute_list_destroy (handle->attr_list); - GNUNET_RECLAIM_attestation_list_destroy (handle->attests_list); +if(NULL!=handle->attr_list) + GNUNET_RECLAIM_attribute_list_destroy (handle->attr_list); +if(NULL!=handle->attests_list) + GNUNET_RECLAIM_attestation_list_destroy (handle->attests_list); for (ego_entry = handle->ego_head; NULL != ego_entry;) { -- cgit v1.2.3