Commit f0d369ba authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Allow whitespace after the property name when setting a property in the dialog.

parent 58c7fe10
......@@ -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 ) )
......
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