Skip to content
Snippets Groups Projects
Commit 3299bfd4 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

msi: Fix crash with access to component.

parent b0d2f77c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment