diff options
author | Anna Wimbauer <anna.wimbauer@gmx.de> | 2020-04-27 09:27:19 +0200 |
---|---|---|
committer | Anna Wimbauer <anna.wimbauer@gmx.de> | 2020-04-27 09:27:19 +0200 |
commit | 9a91e41070e368e929e7534c047c8360e60d1901 (patch) | |
tree | f09a71a9a2418e134a0d1a3a1f16600ead571342 | |
parent | e264221eb629019887019935e7680faa5ec36720 (diff) |
fixed nullpointer
-rw-r--r-- | src/reclaim/plugin_rest_openid_connect.c | 6 |
1 files 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;) { |