Commit 809cf354 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Fix a memory leak in the ole storage implementation.

parent 16df50ef
...@@ -2379,7 +2379,7 @@ void StorageImpl_Destroy(StorageBaseImpl* iface) ...@@ -2379,7 +2379,7 @@ void StorageImpl_Destroy(StorageBaseImpl* iface)
BlockChainStream_Destroy(This->smallBlockDepotChain); BlockChainStream_Destroy(This->smallBlockDepotChain);
BIGBLOCKFILE_Destructor(This->bigBlockFile); BIGBLOCKFILE_Destructor(This->bigBlockFile);
return; HeapFree(GetProcessHeap(), 0, This);
} }
/****************************************************************************** /******************************************************************************
......
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