gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: fix dll remove


From: gnunet
Subject: [gnunet] branch master updated: fix dll remove
Date: Tue, 05 May 2020 13:54:07 +0200

This is an automated email from the git hooks/post-receive script.

martin-schanzenbach pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 5f2f94367 fix dll remove
5f2f94367 is described below

commit 5f2f94367d366613426925eea30a8549d61280d1
Author: Schanzenbach, Martin <address@hidden>
AuthorDate: Tue May 5 13:49:11 2020 +0200

    fix dll remove
---
 src/reclaim/plugin_rest_openid_connect.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/reclaim/plugin_rest_openid_connect.c 
b/src/reclaim/plugin_rest_openid_connect.c
index b6f82df84..a7a8de173 100644
--- a/src/reclaim/plugin_rest_openid_connect.c
+++ b/src/reclaim/plugin_rest_openid_connect.c
@@ -584,9 +584,9 @@ cleanup_handle (struct RequestHandle *handle)
 
   while (NULL != (ego_entry = handle->ego_head))
   {
-    GNUNET_CONTAINER_DLL_remove (ego_entry,
-                                 handle->ego_head,
-                                 handle->ego_tail);
+    GNUNET_CONTAINER_DLL_remove (handle->ego_head,
+                                 handle->ego_tail,
+                                 ego_entry);
     GNUNET_free (ego_entry->identifier);
     GNUNET_free (ego_entry->keystring);
     GNUNET_free (ego_entry);

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]