From 6710c3bdf8b7307fc662f0f5fdcdf99e954d5f0a Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 5 Oct 1993 16:25:24 -0400 Subject: [PATCH] (read_specs): Make a null entry at end of `compilers' when reading new entry from file. From-SVN: r5615 --- gcc/gcc.c | 1 + 1 file changed, 1 insertion(+) 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) -- 2.30.2