[PATCH 5/6] dmloader: Don't crash on container desctruction if it was never loaded.

Michael Stefaniuc mstefani at redhat.de
Wed Mar 12 17:10:12 CDT 2014


---
 dlls/dmloader/container.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/dmloader/container.c b/dlls/dmloader/container.c
index f53a074..4fb5f97 100644
--- a/dlls/dmloader/container.c
+++ b/dlls/dmloader/container.c
@@ -68,7 +68,6 @@ static HRESULT destroy_dmcontainer(IDirectMusicContainerImpl *This)
 	IStream_Release (This->pStream);
 
 	/* FIXME: release allocated entries */
-	unlock_module();
 
 	return S_OK;
 }
@@ -108,8 +107,10 @@ static ULONG WINAPI IDirectMusicContainerImpl_IDirectMusicContainer_Release (LPD
 	DWORD dwRef = InterlockedDecrement (&This->dwRef);
 	TRACE("(%p): ReleaseRef to %d\n", This, dwRef);
 	if (dwRef == 0) {
-                destroy_dmcontainer(This);
+                if (This->pStream)
+                        destroy_dmcontainer(This);
 		HeapFree(GetProcessHeap(), 0, This);
+                unlock_module();
 	}
 	
 	return dwRef;
-- 
1.8.3.1



More information about the wine-patches mailing list