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

This commit is contained in:
James Hawkins 2009-12-13 19:35:39 -08:00 committed by Alexandre Julliard
parent a7fe36b327
commit 12134243c3
1 changed files with 1 additions and 0 deletions

View File

@ -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]);
}