From: Dave Brolley Date: Mon, 13 Sep 1999 16:58:44 +0000 (+0000) Subject: cppinit.c (append_include_chain): Initialize 'next' and 'alloc' fields. X-Git-Tag: prereleases/libstdc++-2.92~10635 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=503cb436279a0ccde721d7863e07b64abfa26cae;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d0db78bd5ac9..ca0c14626c24 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Sep 13 12:57:06 1999 Dave Brolley + + * cppinit.c (append_include_chain): Initialize 'next' and 'alloc' + fields. + Mon Sep 13 10:01:33 1999 Nick Clifton * config/fp-bit.c: Define L_thenan_sf or L_thenan_df (as diff --git a/gcc/cppinit.c b/gcc/cppinit.c index e7d1426ccd59..3d8c088ec048 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) {