Bug #43005 main.init_connect fais on Windows in PB2
Server args containing spaces do not work on Windows Fixed my_safe_rprocess-win to re-apply "" around such args
This commit is contained in:
parent
47fa03abe7
commit
6fed1e15c2
@ -188,7 +188,14 @@ int main(int argc, const char** argv )
|
|||||||
die("No real args -> nothing to do");
|
die("No real args -> nothing to do");
|
||||||
/* Copy the remaining args to child_arg */
|
/* Copy the remaining args to child_arg */
|
||||||
for (int j= i+1; j < argc; j++) {
|
for (int j= i+1; j < argc; j++) {
|
||||||
to+= _snprintf(to, child_args + sizeof(child_args) - to, "%s ", argv[j]);
|
if (strchr (argv[j], ' ')) {
|
||||||
|
/* Protect with "" if this arg contains a space */
|
||||||
|
to+= _snprintf(to, child_args + sizeof(child_args) - to,
|
||||||
|
"\"%s\" ", argv[j]);
|
||||||
|
} else {
|
||||||
|
to+= _snprintf(to, child_args + sizeof(child_args) - to,
|
||||||
|
"%s ", argv[j]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
|
@ -11,4 +11,3 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
rpl_cross_version : Bug#42311 2009-03-27 joro rpl_cross_version fails on macosx
|
rpl_cross_version : Bug#42311 2009-03-27 joro rpl_cross_version fails on macosx
|
||||||
rpl_init_slave : Bug#44920 2009-05-18 pcrews MTR2 is not processing master.opt input properly on Windows
|
|
||||||
|
@ -12,4 +12,3 @@
|
|||||||
kill : Bug#37780 2008-12-03 HHunger need some changes to be robust enough for pushbuild.
|
kill : Bug#37780 2008-12-03 HHunger need some changes to be robust enough for pushbuild.
|
||||||
innodb_bug39438 : Bug#42383 2009-01-28 lsoares "This fails in embedded and on windows. Note that this test is not run on windows and on embedded in PB for main trees currently"
|
innodb_bug39438 : Bug#42383 2009-01-28 lsoares "This fails in embedded and on windows. Note that this test is not run on windows and on embedded in PB for main trees currently"
|
||||||
query_cache_28249 : Bug#43861 2009-03-25 main.query_cache_28249 fails sporadically
|
query_cache_28249 : Bug#43861 2009-03-25 main.query_cache_28249 fails sporadically
|
||||||
init_connect : Bug#44920 2009-05-18 pcrews MTR2 is not processing master.opt input properly on Windows
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user