Commit 4cacdc7d authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Initialize the update function pointer when creating the control.

parent bca80e1a
...@@ -417,6 +417,7 @@ static msi_control *msi_dialog_create_window( msi_dialog *dialog, ...@@ -417,6 +417,7 @@ static msi_control *msi_dialog_create_window( msi_dialog *dialog,
strcpyW( control->name, name ); strcpyW( control->name, name );
list_add_head( &dialog->controls, &control->entry ); list_add_head( &dialog->controls, &control->entry );
control->handler = NULL; control->handler = NULL;
control->update = NULL;
control->property = NULL; control->property = NULL;
control->value = NULL; control->value = NULL;
control->hBitmap = NULL; control->hBitmap = NULL;
......
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