Fix a memory leak in the ole storage implementation.

This commit is contained in:
Mike McCormack 2005-05-10 15:59:59 +00:00 committed by Alexandre Julliard
parent 16df50efbe
commit 809cf354e4
1 changed files with 1 additions and 1 deletions

View File

@ -2379,7 +2379,7 @@ void StorageImpl_Destroy(StorageBaseImpl* iface)
BlockChainStream_Destroy(This->smallBlockDepotChain);
BIGBLOCKFILE_Destructor(This->bigBlockFile);
return;
HeapFree(GetProcessHeap(), 0, This);
}
/******************************************************************************