aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-09-02 23:19:20 +0000
committerRichard Stallman <rms@gnu.org>1992-09-02 23:19:20 +0000
commit20eec2c268e2964f00ae678abadf24ad98e7ed79 (patch)
treeffa4ad5b7761f794a4183b8a959559bdf2bed689
parentc515799cd1dcb0df1462738acce002dd6f9f0099 (diff)
downloadgcc-20eec2c268e2964f00ae678abadf24ad98e7ed79.zip
gcc-20eec2c268e2964f00ae678abadf24ad98e7ed79.tar.gz
gcc-20eec2c268e2964f00ae678abadf24ad98e7ed79.tar.bz2
(default_compilers): Add missing comma between strings, so that traditional compilers can compile gcc.c.
(default_compilers): Add missing comma between strings, so that traditional compilers can compile gcc.c. (main): Don't pass strcpy or strlen a NULL pointer if some of the spec strings in default_compilers are NULL. (validate_all_switches): Don't dereference a NULL pointer if some of the spec strings in defalut_compilers are NULL. From-SVN: r2039
-rw-r--r--gcc/gcc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index e353efa..6977414 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -464,7 +464,7 @@ static struct compiler default_compilers[] =
%c %{O*:-D__OPTIMIZE__} %{traditional} %{ftraditional:-traditional}\
%{traditional-cpp:-traditional}\
%{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C\
- %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n"
+ %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
"%{!M:%{!MM:%{!E:cc1obj %{!pipe:%g.i} %1 \
%{!Q:-quiet} -dumpbase %b.m %{d*} %{m*} %{a}\
%{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} \
@@ -500,7 +500,7 @@ static struct compiler default_compilers[] =
%c %{O*:-D__OPTIMIZE__} %{traditional} %{ftraditional:-traditional}\
%{traditional-cpp:-traditional} %{trigraphs}\
%{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C\
- %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n"
+ %i %{!M:%{!MM:%{!E:%{!pipe:%g.i}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
"%{!M:%{!MM:%{!E:cc1plus %{!pipe:%g.i} %1 %2\
%{!Q:-quiet} -dumpbase %b.cc %{d*} %{m*} %{a}\
%{g*} %{O*} %{W*} %{w} %{pedantic*} %{ansi} %{traditional}\
@@ -545,7 +545,7 @@ static struct compiler default_compilers[] =
%c %{O*:-D__OPTIMIZE__} %{traditional} %{ftraditional:-traditional}\
%{traditional-cpp:-traditional}\
%{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C\
- %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n"
+ %i %{!M:%{!MM:%{!E:%{!pipe:%g.s}}}}%{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}} |\n",
"%{!M:%{!MM:%{!E:%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %Y\
%{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%u.o}\
%{!pipe:%g.s} %A\n }}}}"},
@@ -3371,13 +3371,13 @@ main (argc, argv)
input_suffix = "";
len = 0;
- for (i = 0; i < sizeof cp->spec / sizeof cp->spec[0]; i++)
+ for (i = 0; i < sizeof cp->spec / sizeof cp->spec[0] && cp->spec[i]; i++)
len += strlen (cp->spec[i]);
p = (char *) xmalloc (len + 1);
len = 0;
- for (i = 0; i < sizeof cp->spec / sizeof cp->spec[0]; i++)
+ for (i = 0; i < sizeof cp->spec / sizeof cp->spec[0] && cp->spec[i]; i++)
{
strcpy (p + len, cp->spec[i]);
len += strlen (cp->spec[i]);
@@ -3705,7 +3705,7 @@ validate_all_switches ()
for (comp = compilers; comp->spec[0]; comp++)
{
int i;
- for (i = 0; i < sizeof comp->spec / sizeof comp->spec[0]; i++)
+ for (i = 0; i < sizeof comp->spec / sizeof comp->spec[0] && comp->spec[i]; i++)
{
p = comp->spec[i];
while (c = *p++)