msi: Remove some redundant else statements.
This commit is contained in:
parent
64506c0a51
commit
5bffd28be7
|
@ -249,13 +249,15 @@ LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
|
|||
TRACE(" already resolved to %s\n",debugstr_w(path));
|
||||
return path;
|
||||
}
|
||||
else if (source && f->ResolvedSource)
|
||||
|
||||
if (source && f->ResolvedSource)
|
||||
{
|
||||
path = strdupW( f->ResolvedSource );
|
||||
TRACE(" (source)already resolved to %s\n",debugstr_w(path));
|
||||
return path;
|
||||
}
|
||||
else if (!source && f->Property)
|
||||
|
||||
if (!source && f->Property)
|
||||
{
|
||||
path = build_directory_name( 2, f->Property, NULL );
|
||||
|
||||
|
|
Loading…
Reference in New Issue