From ab378803ef71e5dbfcb03698ca1a9a79f963403e Mon Sep 17 00:00:00 2001 From: Robert Shearman Date: Thu, 3 Aug 2006 20:24:10 +0100 Subject: [PATCH] msi: Fix the creation of shortcuts with a null icon index by mapping it to zero. --- dlls/msi/action.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index cce2a59d0e2..e2d78b1b712 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -2934,6 +2934,10 @@ static UINT ITERATE_CreateShortcuts(MSIRECORD *row, LPVOID param) Path = build_icon_path(package,buffer); index = MSI_RecordGetInteger(row,10); + /* no value means 0 */ + if (index == MSI_NULL_INTEGER) + index = 0; + IShellLinkW_SetIconLocation(sl,Path,index); msi_free(Path); }