Commit ba24af0c authored by Mikolaj Zalewski's avatar Mikolaj Zalewski Committed by Alexandre Julliard

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

parent 47e59d99
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment