projects
/
oweals
/
gnunet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
651ce78
)
remove initialize size to zero
author
Nathan S. Evans
<evans@in.tum.de>
Thu, 18 Mar 2010 12:39:09 +0000
(12:39 +0000)
committer
Nathan S. Evans
<evans@in.tum.de>
Thu, 18 Mar 2010 12:39:09 +0000
(12:39 +0000)
src/util/container_heap.c
patch
|
blob
|
history
diff --git
a/src/util/container_heap.c
b/src/util/container_heap.c
index a32cb6c5c1dc47d51622248f506f84d1df64cf93..78881d8081d898aa8b67c357cc17081b7dfa0cd6 100644
(file)
--- 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;
}