msi: Fix loading of long strings.

This commit is contained in:
Mike McCormack 2006-06-13 16:58:55 +09:00 committed by Alexandre Julliard
parent 25f521f1b2
commit cfe36cc81d
1 changed files with 2 additions and 2 deletions

View File

@ -717,8 +717,8 @@ string_table *load_string_table( IStorage *stg )
* and its the high word of the length is inserted in the null string's
* reference count field.
*/
if( pool[i*2-2] == 0 )
len += pool[i*2-1] * 0x10000;
if( pool[i*2-2] == 0 && pool[i*2-1] )
len += pool[i*2+1] * 0x10000;
if( (offset + len) > datasize )
{