Commit f0b97cb1 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Check for NULL transform, as there may be no transforms for the _Columns or _Tables tables.

parent a2406b8c
......@@ -1981,7 +1981,12 @@ static UINT msi_table_load_transform( MSIDATABASE *db, IStorage *stg,
MSIRECORD *rec = NULL;
UINT colcol = 0;
WCHAR coltable[32];
LPWSTR name = transform->name;
LPWSTR name;
if (!transform)
return ERROR_SUCCESS;
name = transform->name;
coltable[0] = 0;
TRACE("%p %p %p %s\n", db, stg, st, debugstr_w(name) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment