msi: All stream names starting with 0x0005 are unencoded.

Fixes a regression caused by 1ff9923148.
This commit is contained in:
Hans Leidekker 2010-02-22 12:25:21 +01:00 committed by Alexandre Julliard
parent ec5ae81c8d
commit ba090ede7b
1 changed files with 2 additions and 2 deletions

View File

@ -527,9 +527,9 @@ static INT add_streams_to_table(MSISTREAMSVIEW *sv)
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);
}
else