]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cppinit.c (append_include_chain): Initialize 'next' and 'alloc' fields.
authorDave Brolley <brolley@cygnus.com>
Mon, 13 Sep 1999 16:58:44 +0000 (16:58 +0000)
committerDave Brolley <brolley@gcc.gnu.org>
Mon, 13 Sep 1999 16:58:44 +0000 (12:58 -0400)
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

gcc/ChangeLog
gcc/cppinit.c

index d0db78bd5ac943906b7ee1a8500cc1fd4e4fd41b..ca0c14626c24270089e86563d2d0c1e60493b991 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 e7d1426ccd596aebaa047c17f539f6243bfb3a52..3d8c088ec048c2355ea9edaed4171985aa9b7c20 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)
     {