diff --git a/dlls/msi/streams.c b/dlls/msi/streams.c index 318fb41..e3846ad 100644 --- a/dlls/msi/streams.c +++ b/dlls/msi/streams.c @@ -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) { -- 1.5.4.3