code clean up
[oweals/gnunet.git] / src / util / container_heap.c
index a32cb6c5c1dc47d51622248f506f84d1df64cf93..78881d8081d898aa8b67c357cc17081b7dfa0cd6 100644 (file)
@@ -135,9 +135,6 @@ GNUNET_CONTAINER_heap_create (enum GNUNET_CONTAINER_HeapOrder order)
   struct GNUNET_CONTAINER_Heap *heap;
 
   heap = GNUNET_malloc (sizeof (struct GNUNET_CONTAINER_Heap));
-  heap->walk_pos = NULL;
-  heap->root = NULL;
-  heap->size = 0;
   heap->order = order;
   return heap;
 }