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

This commit is contained in:
Hans Leidekker 2011-09-14 12:04:15 +02:00 committed by Alexandre Julliard
parent eede401d03
commit f13cafad4a
1 changed files with 4 additions and 2 deletions

View File

@ -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) )))
{