aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2020-05-06 17:53:05 +0200
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2020-05-06 17:53:05 +0200
commit0ecd5d693d2a7fa3e2897c77ed1f5f9566c9bebd (patch)
tree071ae41a8ea39eb4a345675d33d72daf592d4318
parent616af9e62f5fd185e244cc9bb5602fb449dc5527 (diff)
downloadgnunet-0ecd5d693d2a7fa3e2897c77ed1f5f9566c9bebd.tar.gz
gnunet-0ecd5d693d2a7fa3e2897c77ed1f5f9566c9bebd.zip
minor fix
-rw-r--r--src/reclaim/plugin_rest_openid_connect.c4
1 files 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)
587 GNUNET_CONTAINER_DLL_remove (handle->ego_head, 587 GNUNET_CONTAINER_DLL_remove (handle->ego_head,
588 handle->ego_tail, 588 handle->ego_tail,
589 ego_entry); 589 ego_entry);
590 GNUNET_free (ego_entry->identifier); 590 GNUNET_free_non_null (ego_entry->identifier);
591 GNUNET_free (ego_entry->keystring); 591 GNUNET_free_non_null (ego_entry->keystring);
592 GNUNET_free (ego_entry); 592 GNUNET_free (ego_entry);
593 } 593 }
594 GNUNET_free (handle); 594 GNUNET_free (handle);