Commit 6fa69c3f authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 8469689a
......@@ -260,7 +260,7 @@ static LPWSTR get_fusion_filename(MSIPACKAGE *package)
if (!check)
{
if (file) msi_free(file);
msi_free(file);
return NULL;
}
......
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