* spawn.cc (linebuf::finish): Drop argument. Don't check command line
length. (spawn_guts): Remove wascygexec. Check real_path.iscygexec instead. Accommodate change to linebuf::finish.
This commit is contained in:
parent
1a6aafd031
commit
45bdcc689a
|
@ -1,3 +1,10 @@
|
||||||
|
2006-04-03 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* spawn.cc (linebuf::finish): Drop argument. Don't check command line
|
||||||
|
length.
|
||||||
|
(spawn_guts): Remove wascygexec. Check real_path.iscygexec instead.
|
||||||
|
Accommodate change to linebuf::finish.
|
||||||
|
|
||||||
2006-04-03 Christopher Faylor <cgf@timesys.com>
|
2006-04-03 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* dcrt0.cc (sm): Delete.
|
* dcrt0.cc (sm): Delete.
|
||||||
|
|
|
@ -250,20 +250,16 @@ class linebuf
|
||||||
void add (const char *what, int len) __attribute__ ((regparm (3)));
|
void add (const char *what, int len) __attribute__ ((regparm (3)));
|
||||||
void add (const char *what) {add (what, strlen (what));}
|
void add (const char *what) {add (what, strlen (what));}
|
||||||
void prepend (const char *what, int len);
|
void prepend (const char *what, int len);
|
||||||
void finish (bool) __attribute__ ((regparm (2)));
|
void finish () __attribute__ ((regparm (1)));
|
||||||
};
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
linebuf::finish (bool cmdlenoverflow_ok)
|
linebuf::finish ()
|
||||||
{
|
{
|
||||||
if (!ix)
|
if (!ix)
|
||||||
add ("", 1);
|
add ("", 1);
|
||||||
else
|
else
|
||||||
{
|
buf[--ix] = '\0';
|
||||||
if (ix-- > MAXWINCMDLEN && cmdlenoverflow_ok)
|
|
||||||
ix = MAXWINCMDLEN - 1;
|
|
||||||
buf[ix] = '\0';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -485,7 +481,6 @@ spawn_guts (const char * prog_arg, const char *const *argv,
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wascygexec = real_path.iscygexec ();
|
|
||||||
res = newargv.fixup (prog_arg, real_path, ext);
|
res = newargv.fixup (prog_arg, real_path, ext);
|
||||||
|
|
||||||
if (res)
|
if (res)
|
||||||
|
@ -510,7 +505,7 @@ spawn_guts (const char * prog_arg, const char *const *argv,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (wascygexec)
|
if (real_path.iscygexec ())
|
||||||
newargv.dup_all ();
|
newargv.dup_all ();
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -560,7 +555,7 @@ spawn_guts (const char * prog_arg, const char *const *argv,
|
||||||
one_line.add (" ", 1);
|
one_line.add (" ", 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
one_line.finish (real_path.iscygexec ());
|
one_line.finish ();
|
||||||
|
|
||||||
if (one_line.ix >= MAXWINCMDLEN)
|
if (one_line.ix >= MAXWINCMDLEN)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue