Commit 3299bfd4 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msi: Fix crash with access to component.

parent b0d2f77c
......@@ -365,7 +365,8 @@ static UINT ITERATE_DuplicateFiles(MSIRECORD *row, LPVOID param)
debugstr_w(component));
/* the action taken was the same as the current install state */
comp->Action = comp->Installed;
if (comp)
comp->Action = comp->Installed;
return ERROR_SUCCESS;
}
......
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