kernel32/tests: Support for spaces in actctx test executable path.

This commit is contained in:
Mikolaj Zalewski 2007-10-17 11:38:55 -07:00 committed by Alexandre Julliard
parent 47e59d994f
commit ba24af0c34
1 changed files with 1 additions and 1 deletions

View File

@ -995,7 +995,7 @@ static void run_child_process(void)
si.cb = sizeof(si);
winetest_get_mainargs( &argv );
sprintf(cmdline, "%s %s manifest1", argv[0], argv[1]);
sprintf(cmdline, "\"%s\" %s manifest1", argv[0], argv[1]);
ok(CreateProcess(argv[0], cmdline, NULL, NULL, FALSE, 0, NULL, NULL,
&si, &pi) != 0, "Could not create process: %u\n", GetLastError());
CloseHandle(pi.hThread);