Commit 428fd07e authored by Reece Dunn's avatar Reece Dunn Committed by Alexandre Julliard

shell32: Fix shlexec crashing on Vista.

parent 922414b6
......@@ -847,9 +847,12 @@ static void test_find_executable(void)
/* Don't test FindExecutable(..., NULL), it always crashes */
strcpy(command, "your word");
if (0) /* Can crash on Vista! */
{
rc=(int)FindExecutableA(NULL, NULL, command);
ok(rc == SE_ERR_FNF || rc > 32 /* nt4 */, "FindExecutable(NULL) returned %d\n", rc);
ok(strcmp(command, "your word") != 0, "FindExecutable(NULL) returned command=[%s]\n", command);
}
strcpy(command, "your word");
rc=(int)FindExecutableA(tmpdir, NULL, command);
......
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