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

msi: Ignore all non-stream elements when filling the _Streams table.

parent 6a7127bf
......@@ -464,6 +464,9 @@ static INT add_streams_to_table(MSISTREAMSVIEW *sv)
if (FAILED(hr) || !size)
break;
if (stat.type != STGTY_STREAM)
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