Commit a9ebec98 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: win95 returns ERROR_BAD_PATHNAME.

parent e94b065d
...@@ -304,7 +304,8 @@ static void test_MsiGetFileHash(void) ...@@ -304,7 +304,8 @@ static void test_MsiGetFileHash(void)
/* szFilePath is empty */ /* szFilePath is empty */
r = pMsiGetFileHashA("", 0, &hash); r = pMsiGetFileHashA("", 0, &hash);
ok(r == ERROR_PATH_NOT_FOUND, "Expected ERROR_PATH_NOT_FOUND, got %d\n", r); ok(r == ERROR_PATH_NOT_FOUND || r == ERROR_BAD_PATHNAME,
"Expected ERROR_PATH_NOT_FOUND or ERROR_BAD_PATHNAME, got %d\n", r);
/* szFilePath is nonexistent */ /* szFilePath is nonexistent */
r = pMsiGetFileHashA(name, 0, &hash); r = pMsiGetFileHashA(name, 0, &hash);
......
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