From b319493901b988be6a5c457f023be6dbf5356283 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Tue, 19 Jul 2016 14:58:16 +0200 Subject: [PATCH] thread: initialize top->file --- thread.c | 1 + 1 file changed, 1 insertion(+) diff --git a/thread.c b/thread.c index b645233..72680b5 100644 --- a/thread.c +++ b/thread.c @@ -231,6 +231,7 @@ find_roots() { top = malloc (sizeof (struct container)); top->msg = 0; + top->file = 0; top->next = top->child = top->parent = 0; top->mid = "(top)";