Commit 9a9c2ea2 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

mapi32/tests: Don't run tests if ScInitMapiUtil() fails.

parent 1e0b1e54
......@@ -106,6 +106,12 @@ START_TEST(imalloc)
FreeLibrary(hMapi32);
return;
}
else if ((ret == E_FAIL) && (GetLastError() == ERROR_INVALID_HANDLE))
{
win_skip("ScInitMapiUtil doesn't work on some Win98 and WinME systems\n");
FreeLibrary(hMapi32);
return;
}
test_IMalloc();
......
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