MSI advertised shortcuts don't require a product ID.
This commit is contained in:
parent
950d678c5e
commit
5960e7c93c
|
@ -1996,6 +1996,9 @@ static LPWSTR ShellLink_GetAdvertisedArg(LPCWSTR str)
|
||||||
LPCWSTR p;
|
LPCWSTR p;
|
||||||
DWORD len;
|
DWORD len;
|
||||||
|
|
||||||
|
if( !str )
|
||||||
|
return NULL;
|
||||||
|
|
||||||
p = strchrW( str, ':' );
|
p = strchrW( str, ':' );
|
||||||
if( !p )
|
if( !p )
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -2057,8 +2060,8 @@ static HRESULT ShellLink_SetAdvertiseInfo(IShellLinkImpl *This, LPCWSTR str)
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we have to have at least one of these two for an advertised shortcut */
|
/* we have to have a component for an advertised shortcut */
|
||||||
if( !szComponent && !szProduct )
|
if( !szComponent )
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
|
|
||||||
This->sComponent = ShellLink_GetAdvertisedArg( szComponent );
|
This->sComponent = ShellLink_GetAdvertisedArg( szComponent );
|
||||||
|
|
Loading…
Reference in New Issue