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

ole32: Avoid opening source storage in IStorage::CopyTo.

parent e11e1841
......@@ -2881,7 +2881,7 @@ static void test_copyto_locking(void)
/* Try to copy the storage while the substorage is open */
r = IStorage_CopyTo(stg2, 0, NULL, NULL, stg3);
todo_wine ok(r==S_OK, "IStorage->CopyTo failed, hr=%08x\n", r);
ok(r==S_OK, "IStorage->CopyTo failed, hr=%08x\n", r);
IStorage_Release(stg4);
IStorage_Release(stg3);
......
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