X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Fcontainer_heap.c;h=78881d8081d898aa8b67c357cc17081b7dfa0cd6;hb=0ea8e006d5f5ef84e31e000607bd24a23f8fc1ed;hp=a32cb6c5c1dc47d51622248f506f84d1df64cf93;hpb=7595e5de319265cadbd3fc8ccceb97a29e9111f3;p=oweals%2Fgnunet.git diff --git a/src/util/container_heap.c b/src/util/container_heap.c index a32cb6c5c..78881d808 100644 --- a/src/util/container_heap.c +++ b/src/util/container_heap.c @@ -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; }