summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-19 14:58:16 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-19 14:58:16 +0200
commitb319493901b988be6a5c457f023be6dbf5356283 (patch)
treef64c8e118941bcbf132fcf207c1336722697ba25
parent7f81aa6012164f64876c9ad370105792b6042953 (diff)
downloadmblaze-b319493901b988be6a5c457f023be6dbf5356283.tar.gz
mblaze-b319493901b988be6a5c457f023be6dbf5356283.tar.xz
mblaze-b319493901b988be6a5c457f023be6dbf5356283.zip
thread: initialize top->file
-rw-r--r--thread.c1
1 files changed, 1 insertions, 0 deletions
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)";