aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-05-12 17:00:56 -0400
committerBob Arnson <github@bobs.org>2025-06-11 23:41:31 -0400
commit7b7f690249dce0b5b7eb261a7905fc338194a8ca (patch)
tree3687b6898ab60f2516eeb39afb03875d2f488343 /src
parentc7b981244cfe0dbca2284690bd5091aeda410de0 (diff)
downloadwix-7b7f690249dce0b5b7eb261a7905fc338194a8ca.tar.gz
wix-7b7f690249dce0b5b7eb261a7905fc338194a8ca.tar.bz2
wix-7b7f690249dce0b5b7eb261a7905fc338194a8ca.zip
Fix Util decompiler extension crash.
Diffstat (limited to 'src')
-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