aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
index 80ee75a5..d11a890c 100644
--- a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
@@ -4152,7 +4152,7 @@ namespace WixToolset.Core.WindowsInstaller
4152 { 4152 {
4153 var xComponent = new XElement(Names.ComponentElement, 4153 var xComponent = new XElement(Names.ComponentElement,
4154 new XAttribute("Id", row.FieldAsString(0)), 4154 new XAttribute("Id", row.FieldAsString(0)),
4155 row.IsColumnEmpty(1) ? null : new XAttribute("Guid", row.FieldAsString(1))); 4155 new XAttribute("Guid", row.FieldAsString(1) ?? String.Empty));
4156 4156
4157 var attributes = row.FieldAsInteger(3); 4157 var attributes = row.FieldAsInteger(3);
4158 4158