diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-10-05 16:25:24 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-10-05 16:25:24 -0400 |
commit | 6710c3bdf8b7307fc662f0f5fdcdf99e954d5f0a (patch) | |
tree | 851ec977288bcaec42dfaa35a58c707dcba31fe1 /gcc | |
parent | d1db496104d75a6a2b5c59456b4266dc2ed87486 (diff) | |
download | gcc-6710c3bdf8b7307fc662f0f5fdcdf99e954d5f0a.zip gcc-6710c3bdf8b7307fc662f0f5fdcdf99e954d5f0a.tar.gz gcc-6710c3bdf8b7307fc662f0f5fdcdf99e954d5f0a.tar.bz2 |
(read_specs): Make a null entry at end of `compilers' when reading new
entry from file.
From-SVN: r5615
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gcc.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) |