Commit da250c9a authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

ole32: IStorage_Revert has no effect for non-transacted storages.

parent ec8f0029
......@@ -1796,8 +1796,8 @@ static HRESULT WINAPI StorageImpl_Commit(
static HRESULT WINAPI StorageImpl_Revert(
IStorage* iface)
{
FIXME("(%p): stub\n", iface);
return E_NOTIMPL;
TRACE("(%p)\n", iface);
return S_OK;
}
/*************************************************************************
......
......@@ -1384,7 +1384,7 @@ static void test_revert(void)
ok(r==S_OK, "IStorage->CreateStream failed\n");
r = IStorage_Revert(stg);
todo_wine ok(r==S_OK, "IStorage->Revert failed %08x\n", r);
ok(r==S_OK, "IStorage->Revert failed %08x\n", r);
r = IStream_Write(stm, "this works\n", 11, NULL);
ok(r==S_OK, "IStream_Write should succeed %08x\n", r);
......
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