mirror of
https://github.com/reactos/wine.git
synced 2025-02-19 04:18:09 +00:00
shell32: Fix a couple test failures on NT4.
This commit is contained in:
parent
8b0f2e3e4b
commit
dfdf2be7c6
@ -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))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user