msi: All stream names starting with 0x0005 are unencoded.
Fixes a regression caused by 1ff9923148
.
This commit is contained in:
parent
ec5ae81c8d
commit
ba090ede7b
|
@ -527,9 +527,9 @@ static INT add_streams_to_table(MSISTREAMSVIEW *sv)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!strcmpW(stat.pwcsName, szSumInfo))
|
/* these streams appear to be unencoded */
|
||||||
|
if (*stat.pwcsName == 0x0005)
|
||||||
{
|
{
|
||||||
/* summary information stream is not encoded */
|
|
||||||
r = db_get_raw_stream(sv->db, stat.pwcsName, &stream->stream);
|
r = db_get_raw_stream(sv->db, stat.pwcsName, &stream->stream);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue