fix bad free
[oweals/gnunet.git] / src / include / gnunet_container_lib.h
index e6f4ba43b6b465af4fff792505ec97558cc41400..2de65b2f1d5e93a1abf59f1f2e1c99c26102c826 100644 (file)
@@ -2,20 +2,18 @@
      This file is part of GNUnet.
      Copyright (C) 2001-2015 GNUnet e.V.
 
-     GNUnet is free software; you can redistribute it and/or modify
-     it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 3, or (at your
-     option) any later version.
+     GNUnet is free software: you can redistribute it and/or modify it
+     under the terms of the GNU Affero General Public License as published
+     by the Free Software Foundation, either version 3 of the License,
+     or (at your option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-     You should have received a copy of the GNU General Public License
-     along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-     Boston, MA 02110-1301, USA.
+     Affero General Public License for more details.
+    
+     You should have received a copy of the GNU Affero General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 /**
@@ -2093,7 +2091,7 @@ GNUNET_CONTAINER_multihashmap32_iterator_destroy (struct GNUNET_CONTAINER_MultiH
                         head)) ) \
   { \
     /* insert at head, element < head */ \
-    GNUNET_CONTAINER_DLL_insert (head, \
+    GNUNET_CONTAINER_DLL_insert (head,                                \
                                  tail, \
                                  element); \
   } \
@@ -2110,14 +2108,18 @@ GNUNET_CONTAINER_multihashmap32_iterator_destroy (struct GNUNET_CONTAINER_MultiH
                       pos)) \
         break; /* element < pos */ \
     if (NULL == pos) /* => element > tail */ \
-      GNUNET_CONTAINER_DLL_insert_tail (head, \
+    { \
+      GNUNET_CONTAINER_DLL_insert_tail (head,                             \
                                         tail, \
                                         element); \
+    } \
     else /* prev < element < pos */ \
+    { \
       GNUNET_CONTAINER_DLL_insert_after (head, \
                                          tail, \
-                                         element, \
-                                         pos->prev); \
+                                         pos->prev, \
+                                         element); \
+    } \
   } \
 } while (0)