ole32: Invalidate child streams when a non-top-level storage is freed.

This commit is contained in:
Vincent Povirk 2009-11-18 10:16:13 -06:00 committed by Alexandre Julliard
parent a3cf7a4e06
commit 55604eb36c
1 changed files with 2 additions and 0 deletions

View File

@ -3485,6 +3485,8 @@ static void StorageInternalImpl_Destroy( StorageBaseImpl *iface)
{
StorageInternalImpl* This = (StorageInternalImpl*) iface;
StorageBaseImpl_DeleteAll(&This->base);
HeapFree(GetProcessHeap(), 0, This);
}