urlmon/tests: Fix a failure on Win98.

This commit is contained in:
Detlef Riekenberg 2010-04-13 23:20:11 +02:00 committed by Alexandre Julliard
parent 0838495596
commit 43e9bb5e92
1 changed files with 3 additions and 1 deletions

View File

@ -631,7 +631,9 @@ static void test_InternetSecurityMarshalling(void)
ok(hres == S_OK, "CreateStreamOnHGlobal returned: %08x\n", hres);
hres = CoMarshalInterface(stream, &IID_IInternetSecurityManager, unk, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
ok(hres == S_OK, "CoMarshalInterface returned: %08x\n", hres);
/* Not supported in W98 */
ok(hres == S_OK || broken(hres == REGDB_E_IIDNOTREG),
"CoMarshalInterface returned: %08x\n", hres);
IStream_Release(stream);
IUnknown_Release(unk);