James Hawkins : msi: Initialize the update function pointer when creating the control.
Module: wine Branch: master Commit: 4cacdc7dba4943934ab97dbcd47fc9ab58cfaed4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4cacdc7dba4943934ab97dbcd4... Author: James Hawkins <jhawkins(a)codeweavers.com> Date: Thu Jul 17 12:28:37 2008 -0500 msi: Initialize the update function pointer when creating the control. --- dlls/msi/dialog.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 0e5799f..8c7c59a 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -417,6 +417,7 @@ static msi_control *msi_dialog_create_window( msi_dialog *dialog, strcpyW( 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;
participants (1)
-
Alexandre Julliard