Commit d18875f3 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

ole32/tests: win64 sets the lsb of the final DWORD in the ole private data header.

parent f9d48e7b
......@@ -714,7 +714,12 @@ static void test_cf_dataobject(IDataObject *data)
ok(priv->res2 == 1, "got %08x\n", priv->res2);
ok(priv->count == count, "got %08x expected %08x\n", priv->count, count);
ok(priv->res3[0] == 0, "got %08x\n", priv->res3[0]);
ok(priv->res3[1] == 0, "got %08x\n", priv->res3[1]);
/* win64 sets the lsb */
if(sizeof(fmt_ptr->fmt.ptd) == 8)
todo_wine ok(priv->res3[1] == 1, "got %08x\n", priv->res3[1]);
else
ok(priv->res3[1] == 0, "got %08x\n", priv->res3[1]);
GlobalUnlock(h);
IEnumFORMATETC_Release(enum_fmt);
......
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