- test for external iterator
[oweals/gnunet.git] / src / util / mq.c
index 9a3092f65be9ac76ec095e87fa1fc26c3d38eb94..c215de187f1a88049abd57f58991c9a7e32d4291 100644 (file)
@@ -727,6 +727,12 @@ GNUNET_MQ_destroy (struct GNUNET_MQ_Handle *mq)
     mq->current_envelope = NULL;
   }
 
+  if (NULL != mq->assoc_map)
+  {
+    GNUNET_CONTAINER_multihashmap32_destroy (mq->assoc_map);
+    mq->assoc_map = NULL;
+  }
+
   GNUNET_free (mq);
 }