Module: wine Branch: master Commit: 29baed1bc20de794c6e221fbf67cc8840bb6a283 URL: http://source.winehq.org/git/wine.git/?a=commit;h=29baed1bc20de794c6e221fbf6...
Author: Hans Leidekker hans@codeweavers.com Date: Fri Sep 12 12:07:43 2014 +0200
msi: Improve support for advertized shortcuts.
---
dlls/msi/action.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 1fe6226..e310ba3 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -3925,7 +3925,9 @@ static UINT ITERATE_CreateShortcuts(MSIRECORD *row, LPVOID param) else { FIXME("poorly handled shortcut format, advertised shortcut\n"); - IShellLinkW_SetPath(sl,comp->FullKeypath); + path = resolve_keypath( package, comp ); + IShellLinkW_SetPath( sl, path ); + msi_free( path ); }
if (!MSI_RecordIsNull(row,6))