CVS patchset: 7200
CVS date: 2004/03/28 13:49:19
This commit is contained in:
jbj 2004-03-28 13:49:19 +00:00
parent 9673560957
commit 94c663d938
1 changed files with 1 additions and 1 deletions

View File

@ -1010,7 +1010,7 @@ grabArgs(MacroBuf mb, const MacroEntry me, /*@returned@*/ const char * se,
for (c = optind; c < argc; c++) {
sprintf(aname, "%d", (c - optind + 1));
addMacro(mb->mc, aname, NULL, argv[c], mb->depth);
if(be != b) *be++ = ' '; /* Add space between args */
if (be != b) *be++ = ' '; /* Add space between args */
/*@-nullpass@*/ /* FIX: argv[] can be NULL */
be = stpcpy(be, argv[c]);
/*@=nullpass@*/