Commit ee2cf9a5 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Free the Streams and Storages view object in their respective delete methods.

parent f45db6ee
......@@ -443,6 +443,7 @@ static UINT STORAGES_delete(struct tagMSIVIEW *view)
msi_free(sv->storages);
sv->storages = NULL;
msi_free(sv);
return ERROR_SUCCESS;
}
......
......@@ -407,6 +407,7 @@ static UINT STREAMS_delete(struct tagMSIVIEW *view)
}
msi_free(sv->streams);
msi_free(sv);
return ERROR_SUCCESS;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment