From: Richard Kenner Date: Tue, 5 Oct 1993 20:25:24 +0000 (-0400) Subject: (read_specs): Make a null entry at end of `compilers' when reading new X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6710c3bdf8b7307fc662f0f5fdcdf99e954d5f0a;p=gcc.git (read_specs): Make a null entry at end of `compilers' when reading new entry from file. From-SVN: r5615 --- diff --git a/gcc/gcc.c b/gcc/gcc.c index 5903b047164..99e8d2c0052 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -950,6 +950,7 @@ read_specs (filename) sizeof compilers[n_compilers].spec); compilers[n_compilers].spec[0] = spec; n_compilers++; + bzero (compilers[n_compilers], sizeof compilers[n_compilers]); } if (*suffix == 0)