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

This commit is contained in:
James Hawkins 2008-08-18 22:57:24 -05:00 committed by Alexandre Julliard
parent 6a7127bfc2
commit d9f2120f14
1 changed files with 3 additions and 0 deletions

View File

@ -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)
{