Commit 7a120c99 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Don't crash if we can't find a control.

parent f9042ec9
......@@ -1425,6 +1425,8 @@ static void msi_dialog_update_pathedit( msi_dialog *dialog )
BOOL indirect;
control = msi_dialog_find_control( dialog, szPathEdit );
if (!control)
return;
indirect = control->attributes & msidbControlAttributesIndirect;
prop = msi_dialog_dup_property( dialog, control->property, indirect );
......
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