From 6afe24c38d6ff3644f3ae9108536f9476e73818a Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Sun, 13 Dec 2009 18:21:54 -0600 Subject: [PATCH] ole32: Remove an unnecessary special case in StorageBaseImpl_CopyTo. Opening a storage when it has already been opened now fails with STG_E_ACCESSDENIED. If we attempt to copy a storage to its own child, this will happen during the copy. --- dlls/ole32/storage32.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index 00ffe89aed8..2d2c3d621c6 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -1673,16 +1673,6 @@ static HRESULT WINAPI StorageBaseImpl_CopyTo( if (hr != S_OK) goto cleanup; - /* - * Check if destination storage is not a child of the source - * storage, which will cause an infinite loop - */ - if (pstgChild == pstgDest) - { - hr = STG_E_ACCESSDENIED; - goto cleanup; - } - /* * create a new storage in destination storage */