diff options
author | Bob Arnson <bob@firegiant.com> | 2025-05-12 17:00:56 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2025-05-28 22:52:40 -0400 |
commit | 24c01edf89bf68db6e771563b50914da919b3499 (patch) | |
tree | bc63c020517850fd0d1ebb3cb9626cad129f468b | |
parent | fddc154029b838c2fd83a2eee09d53468dd4cf08 (diff) | |
download | wix-bob/DecrashUtilDecompiler.tar.gz wix-bob/DecrashUtilDecompiler.tar.bz2 wix-bob/DecrashUtilDecompiler.zip |
Fix Util decompiler extension crash.bob/DecrashUtilDecompiler
-rw-r--r-- | src/ext/Util/wixext/UtilDecompiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Util/wixext/UtilDecompiler.cs b/src/ext/Util/wixext/UtilDecompiler.cs index cde64f8f..fb6d02e5 100644 --- a/src/ext/Util/wixext/UtilDecompiler.cs +++ b/src/ext/Util/wixext/UtilDecompiler.cs | |||
@@ -538,7 +538,7 @@ namespace WixToolset.Util | |||
538 | new XAttribute("Name", Path.GetFileNameWithoutExtension(row.FieldAsString(3))), // remove .lnk/.url extension because compiler extension adds it back for us | 538 | new XAttribute("Name", Path.GetFileNameWithoutExtension(row.FieldAsString(3))), // remove .lnk/.url extension because compiler extension adds it back for us |
539 | new XAttribute("Type", type), | 539 | new XAttribute("Type", type), |
540 | new XAttribute("Target", row.FieldAsString(4)), | 540 | new XAttribute("Target", row.FieldAsString(4)), |
541 | new XAttribute("IconFile", row.FieldAsString(6)), | 541 | AttributeIfNotNull("IconFile", row, 6), |
542 | NumericAttributeIfNotNull("IconIndex", row, 7) | 542 | NumericAttributeIfNotNull("IconIndex", row, 7) |
543 | ); | 543 | ); |
544 | 544 | ||