msi: Use FIELD_OFFSET to calculate the size of structs with variable length array.
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c
index 85d5859..c0ff204 100644
--- a/dlls/msi/dialog.c
+++ b/dlls/msi/dialog.c
@@ -309,7 +309,7 @@
 
     /* create a font and add it to the list */
     name = MSI_RecordGetString( rec, 1 );
-    font = msi_alloc( sizeof *font + strlenW( name )*sizeof (WCHAR) );
+    font = msi_alloc( FIELD_OFFSET( msi_font, name[strlenW( name ) + 1] ));
     strcpyW( font->name, name );
     list_add_head( &dialog->fonts, &font->entry );
 
@@ -414,7 +414,7 @@
 
     style |= WS_CHILD;
 
-    control = msi_alloc( sizeof *control + strlenW(name)*sizeof(WCHAR) );
+    control = msi_alloc( FIELD_OFFSET( msi_control, name[strlenW( name ) + 1] ));
     if (!control)
         return NULL;
 
diff --git a/dlls/msi/table.c b/dlls/msi/table.c
index c5aa685..e2186fc 100644
--- a/dlls/msi/table.c
+++ b/dlls/msi/table.c
@@ -2141,7 +2141,7 @@
     else if ( !strcmpW( name, szStorages ) )
         return STORAGES_CreateView( db, view );
 
-    sz = sizeof *tv + lstrlenW(name)*sizeof name[0] ;
+    sz = FIELD_OFFSET( MSITABLEVIEW, name[lstrlenW( name ) + 1] );
     tv = msi_alloc_zero( sz );
     if( !tv )
         return ERROR_FUNCTION_FAILED;