From 05d2aa450605dc46c598bee3826055a06063f170 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sat, 13 Jan 2007 12:47:27 +0100 Subject: [PATCH] itss: Close chm file when destroying Storage. --- dlls/itss/storage.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/itss/storage.c b/dlls/itss/storage.c index 9d1b343a78..6c163adada 100644 --- a/dlls/itss/storage.c +++ b/dlls/itss/storage.c @@ -296,6 +296,7 @@ static ULONG WINAPI ITSS_IStorageImpl_Release( if (ref == 0) { + chm_close(This->chmfile); HeapFree(GetProcessHeap(), 0, This); ITSS_UnlockModule(); }