mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
msi: Fully initialize the control structure in dialog_line_control().
Fixes:76606eaea0
Fixes:174b7b51ac
This commit is contained in:
parent
548d7179e3
commit
735584076e
1 changed files with 2 additions and 0 deletions
|
@ -1192,10 +1192,12 @@ static UINT dialog_line_control( msi_dialog *dialog, MSIRECORD *rec )
|
|||
lstrcpyW( control->name, name );
|
||||
list_add_head( &dialog->controls, &control->entry );
|
||||
control->handler = NULL;
|
||||
control->update = NULL;
|
||||
control->property = NULL;
|
||||
control->value = NULL;
|
||||
control->hBitmap = NULL;
|
||||
control->hIcon = NULL;
|
||||
control->hImageList = NULL;
|
||||
control->hDll = NULL;
|
||||
control->tabnext = wcsdup( MSI_RecordGetString( rec, 11 ) );
|
||||
control->type = wcsdup( MSI_RecordGetString( rec, 3 ) );
|
||||
|
|
Loading…
Reference in a new issue