Commit dfdf2be7 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

shell32: Fix a couple test failures on NT4.

parent 8b0f2e3e
......@@ -419,7 +419,9 @@ static BYTE testSHGetSpecialFolderLocation(BOOL optional, int folder)
pidl = NULL;
hr = pSHGetSpecialFolderLocation(NULL, folder, &pidl);
ok(SUCCEEDED(hr) || optional,
ok(SUCCEEDED(hr) || optional ||
broken((folder == CSIDL_COOKIES || folder == CSIDL_INTERNET) &&
hr == E_INVALIDARG) /* NT4 */,
"SHGetSpecialFolderLocation(NULL, %s, &pidl) failed: 0x%08x\n", getFolderName(folder), hr);
if (SUCCEEDED(hr))
{
......
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