aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/reflist.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/reflist.c b/src/reflist.c
index 5ab99635..83f384c4 100644
--- a/src/reflist.c
+++ b/src/reflist.c
@@ -152,9 +152,7 @@ RefList *reflist_new()
new = malloc(sizeof(struct _reflist));
if ( new == NULL ) return NULL;
- /* Create pseudo-root with invalid indices.
- * The "real" root will be the left child of this. */
- new->head = NULL;//new_node(1<<31);
+ new->head = NULL;
return new;
}