From 46278b45b909964ffc6ec3f4fccef07c4931bf55 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Mon, 24 Aug 2020 21:11:34 -0400 Subject: Fixed custom action null column decompilation. --- src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs index bc9e6de3..c483fb80 100644 --- a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs +++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs @@ -3876,7 +3876,7 @@ namespace WixToolset.Core.WindowsInstaller { var xRow = new XElement(Names.RowElement); - foreach (var field in row.Fields) + foreach (var field in row.Fields.Where(f => f.Data != null)) { var xData = new XElement(Names.DataElement, new XAttribute("Column", field.Column.Name), -- cgit v1.2.3-55-g6feb