msi: Remove redundant NULL check before msi_free (Smatch).
This commit is contained in:
parent
8469689a71
commit
6fa69c3f2b
|
@ -260,7 +260,7 @@ static LPWSTR get_fusion_filename(MSIPACKAGE *package)
|
||||||
|
|
||||||
if (!check)
|
if (!check)
|
||||||
{
|
{
|
||||||
if (file) msi_free(file);
|
msi_free(file);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue