Commit ddb20916 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Fix a memory leak.

parent 9f681421
......@@ -505,7 +505,10 @@ static INT add_streams_to_table(MSISTREAMSVIEW *sv)
break;
if (stat.type != STGTY_STREAM)
{
CoTaskMemFree(stat.pwcsName);
continue;
}
/* table streams are not in the _Streams table */
if (*stat.pwcsName == 0x4840)
......
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