msi: Remove redundant NULL check before msi_free (Smatch).

This commit is contained in:
Michael Stefaniuc 2009-03-25 23:02:37 +01:00 committed by Alexandre Julliard
parent 8469689a71
commit 6fa69c3f2b
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ static LPWSTR get_fusion_filename(MSIPACKAGE *package)
if (!check)
{
if (file) msi_free(file);
msi_free(file);
return NULL;
}