James Hawkins : msi: Free each stream name when deleting the streams view.

Alexandre Julliard julliard at winehq.org
Mon Dec 14 09:51:20 CST 2009


Module: wine
Branch: master
Commit: 12134243c35c02062e94781be9ac3e721541ee03
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=12134243c35c02062e94781be9ac3e721541ee03

Author: James Hawkins <truiken at gmail.com>
Date:   Sun Dec 13 19:35:39 2009 -0800

msi: Free each stream name when deleting the streams view.

---

 dlls/msi/streams.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/dlls/msi/streams.c b/dlls/msi/streams.c
index faa27c8..61cebff 100644
--- a/dlls/msi/streams.c
+++ b/dlls/msi/streams.c
@@ -402,6 +402,7 @@ static UINT STREAMS_delete(struct tagMSIVIEW *view)
     {
         if (sv->streams[i] && sv->streams[i]->stream)
             IStream_Release(sv->streams[i]->stream);
+        msi_free(sv->streams[i]->name);
         msi_free(sv->streams[i]);
     }
 




More information about the wine-cvs mailing list