* dcrt0.cc (quoted): Fix problem where ' quoted strings were skipped.

* fhandler.h (fhandler_socket::~fhandler_socket): Delete declaration.
* net.cc: Remove unnecessary "number_of_sockets" usage.
(fhandler_socket::fhandler_socket): Ditto.
(fhandler_socket::~fhandler_socket): Delete definition.
* spawn.cc (spawn_guts): Force first argument passed to CreateProcess as a
command line to be windows style.
This commit is contained in:
Christopher Faylor
2000-09-26 00:52:21 +00:00
parent ef42416e99
commit 4eafa56ec2
5 changed files with 15 additions and 22 deletions

View File

@ -496,7 +496,7 @@ spawn_guts (HANDLE hToken, const char * prog_arg, const char *const *argv,
const char *a;
newargv.dup_maybe (i);
a = newargv[i];
a = i ? newargv[i] : (char *) real_path;
int len = strlen (a);
if (len != 0 && !strpbrk (a, " \t\n\r\""))
one_line.add (a, len);