This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [PATCH] Fix for backslash quoting in argument list passing (spawn_guts)


>I've included what I think is a much simpler patch below.  It seems to
>work correctly using a vc compiled program which echos its args.

The problem with your patch is that it can double backslashes even if
they don't precede a '"', and that shouldn't be done !
Here is what I get with your patch:

/tmp $ ./print_args_cygwin.exe 'a a\\a'
1: a a\\a
/tmp $ ./print_args_nocygwin.exe 'a a\\a'
1: a a\\\\a

Another issue is that backslashes that are just before the closing '"'
have to be doubled too:

/tmp $ ./print_args_cygwin.exe 'a a\'
1: a a\
/tmp $ ./print_args_nocygwin.exe 'a a\'
1: a a"

My print_args_nocygwin.exe is compiled with gcc, but I guess the
result is the same with vc.

Pierre Bogossian

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]