Commit f13cafad authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Ignore files if their path cannot be resolved in the RemoveFiles action.

parent eede401d
......@@ -1164,8 +1164,10 @@ static UINT ITERATE_RemoveFiles(MSIRECORD *row, LPVOID param)
dir = msi_dup_property(package->db, dirprop);
if (!dir)
return ERROR_OUTOFMEMORY;
{
WARN("directory property has no value\n");
return ERROR_SUCCESS;
}
size = 0;
if ((filename = strdupW( MSI_RecordGetString(row, 3) )))
{
......
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