aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Util/wixext/UtilDecompiler.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-05-12 17:00:56 -0400
committerBob Arnson <bob@firegiant.com>2025-05-28 22:52:40 -0400
commit24c01edf89bf68db6e771563b50914da919b3499 (patch)
treebc63c020517850fd0d1ebb3cb9626cad129f468b /src/ext/Util/wixext/UtilDecompiler.cs
parentfddc154029b838c2fd83a2eee09d53468dd4cf08 (diff)
downloadwix-bob/DecrashUtilDecompiler.tar.gz
wix-bob/DecrashUtilDecompiler.tar.bz2
wix-bob/DecrashUtilDecompiler.zip
Fix Util decompiler extension crash.bob/DecrashUtilDecompiler
Diffstat (limited to 'src/ext/Util/wixext/UtilDecompiler.cs')
-rw-r--r--src/ext/Util/wixext/UtilDecompiler.cs2
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