From 503cb436279a0ccde721d7863e07b64abfa26cae Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Mon, 13 Sep 1999 16:58:44 +0000 Subject: cppinit.c (append_include_chain): Initialize 'next' and 'alloc' fields. Mon Sep 13 12:57:06 1999 Dave Brolley * cppinit.c (append_include_chain): Initialize 'next' and 'alloc' fields. From-SVN: r29380 --- gcc/cppinit.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/cppinit.c') diff --git a/gcc/cppinit.c b/gcc/cppinit.c index e7d1426c..3d8c088 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -487,6 +487,8 @@ append_include_chain (pfile, pend, dir, path) new->dev = st.st_dev; new->sysp = (path == SYSTEM); new->name_map = NULL; + new->next = NULL; + new->alloc = NULL; switch (path) { -- cgit v1.1