Commit 503cb436 by Dave Brolley Committed by Dave Brolley

cppinit.c (append_include_chain): Initialize 'next' and 'alloc' fields.

Mon Sep 13 12:57:06 1999  Dave Brolley  <brolley@cygnus.com>

	* cppinit.c (append_include_chain): Initialize 'next' and 'alloc'
	fields.

From-SVN: r29380
parent 54c75f8c
Mon Sep 13 12:57:06 1999 Dave Brolley <brolley@cygnus.com>
* cppinit.c (append_include_chain): Initialize 'next' and 'alloc'
fields.
Mon Sep 13 10:01:33 1999 Nick Clifton <nickc@cygnus.com> Mon Sep 13 10:01:33 1999 Nick Clifton <nickc@cygnus.com>
* config/fp-bit.c: Define L_thenan_sf or L_thenan_df (as * config/fp-bit.c: Define L_thenan_sf or L_thenan_df (as
......
...@@ -487,6 +487,8 @@ append_include_chain (pfile, pend, dir, path) ...@@ -487,6 +487,8 @@ append_include_chain (pfile, pend, dir, path)
new->dev = st.st_dev; new->dev = st.st_dev;
new->sysp = (path == SYSTEM); new->sysp = (path == SYSTEM);
new->name_map = NULL; new->name_map = NULL;
new->next = NULL;
new->alloc = NULL;
switch (path) switch (path)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment