msi: Fix possible free of uninitialized pointer.

This commit is contained in:
Mike McCormack 2006-04-07 13:29:56 +09:00 committed by Alexandre Julliard
parent fcb771d9c0
commit 85e8d3adf8
1 changed files with 2 additions and 2 deletions

View File

@ -683,8 +683,8 @@ HRESULT init_string_table( IStorage *stg )
string_table *load_string_table( IStorage *stg )
{
string_table *st = NULL;
CHAR *data;
USHORT *pool;
CHAR *data = NULL;
USHORT *pool = NULL;
UINT r, datasize = 0, poolsize = 0, codepage;
DWORD i, count, offset, len, n;
static const WCHAR szStringData[] = {