From 0ecd5d693d2a7fa3e2897c77ed1f5f9566c9bebd Mon Sep 17 00:00:00 2001 From: "Schanzenbach, Martin" Date: Wed, 6 May 2020 17:53:05 +0200 Subject: [PATCH] minor fix --- src/reclaim/plugin_rest_openid_connect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reclaim/plugin_rest_openid_connect.c b/src/reclaim/plugin_rest_openid_connect.c index 9c93b7764..09b3c8248 100644 --- a/src/reclaim/plugin_rest_openid_connect.c +++ b/src/reclaim/plugin_rest_openid_connect.c @@ -587,8 +587,8 @@ cleanup_handle (struct RequestHandle *handle) GNUNET_CONTAINER_DLL_remove (handle->ego_head, handle->ego_tail, ego_entry); - GNUNET_free (ego_entry->identifier); - GNUNET_free (ego_entry->keystring); + GNUNET_free_non_null (ego_entry->identifier); + GNUNET_free_non_null (ego_entry->keystring); GNUNET_free (ego_entry); } GNUNET_free (handle); -- 2.25.1