OSDN Git Service

Mon Sep 13 12:57:06 1999 Dave Brolley <brolley@cygnus.com>
authorbrolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Sep 1999 16:58:44 +0000 (16:58 +0000)
committerbrolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Sep 1999 16:58:44 +0000 (16:58 +0000)
* cppinit.c (append_include_chain): Initialize 'next' and 'alloc'
fields.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29380 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cppinit.c

index d0db78b..ca0c146 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        * config/fp-bit.c: Define L_thenan_sf or L_thenan_df (as
index e7d1426..3d8c088 100644 (file)
@@ -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)
     {