mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
msvcrt/tests: Fix _popen test failures when path contains spaces.
This commit is contained in:
parent
2518b8f31b
commit
1d865f90d6
@ -327,7 +327,7 @@ static void test__popen(const char *name)
|
||||
char buf[1024];
|
||||
int ret;
|
||||
|
||||
sprintf(buf, "%s misc popen", name);
|
||||
sprintf(buf, "\"%s\" misc popen", name);
|
||||
pipe = _popen(buf, "r");
|
||||
ok(pipe != NULL, "_popen failed with error: %d\n", errno);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user