From f0d369ba44f336a51cab0590ad3310efe3babbd8 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Fri, 21 Dec 2007 23:29:13 -0600 Subject: [PATCH] msi: Allow whitespace after the property name when setting a property in the dialog. --- dlls/msi/dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 4994216f696..4417d4be3bb 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -3074,7 +3074,7 @@ static UINT msi_dialog_set_property( msi_dialog *dialog, LPCWSTR event, LPCWSTR prop = msi_alloc( len*sizeof(WCHAR)); strcpyW( prop, &event[1] ); p = strchrW( prop, ']' ); - if( p && p[1] == 0 ) + if( p && (p[1] == 0 || p[1] == ' ') ) { *p = 0; if( strcmpW( szNullArg, arg ) ) -- 2.11.4.GIT