]> git.ipfire.org Git - thirdparty/git.git/commitdiff
MinGW: Quote arguments for subprocesses that contain a single-quote
authorJohannes Sixt <j6t@kdbg.org>
Tue, 24 Mar 2009 20:43:02 +0000 (21:43 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 24 Mar 2009 21:42:59 +0000 (14:42 -0700)
Before a process can be spawned by mingw_spawnve, arguments must be
surrounded by double-quotes if special characters are present.  This is
necessary because the startup code of the spawned process will expand
arguments that look like glob patterns.  "Normal" Windows command line
utilities expand only * and ?, but MSYS programs, including bash, are
different: They also expand braces, and this has already been taken care
of by compat/mingw.c:quote_arg().

But MSYS programs also treat single-quotes in a special way: Arguments
between single-quotes are spliced together (with spaces) into a word.
With this patch this treatment is avoided by quoting arguments that contain
single-quotes.

This lets t4252 pass on Windows.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
compat/mingw.c

index 171fa85e4ae9fa026bbb72e2e8b8b098d2ba22ed..2839d9df6ee8ed1e7227769877b04dd9b542f496 100644 (file)
@@ -457,7 +457,7 @@ static const char *quote_arg(const char *arg)
        const char *p = arg;
        if (!*p) force_quotes = 1;
        while (*p) {
-               if (isspace(*p) || *p == '*' || *p == '?' || *p == '{')
+               if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
                        force_quotes = 1;
                else if (*p == '"')
                        n++;