diff options
author | Bob Arnson <bob@firegiant.com> | 2020-08-24 21:11:34 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-08-24 21:16:04 -0400 |
commit | 46278b45b909964ffc6ec3f4fccef07c4931bf55 (patch) | |
tree | 3ea61ae14c8d0433828826672bcf7b5b8a7e3503 /src | |
parent | c237bb3bb00d36c50271a70baac68f49890e35e1 (diff) | |
download | wix-46278b45b909964ffc6ec3f4fccef07c4931bf55.tar.gz wix-46278b45b909964ffc6ec3f4fccef07c4931bf55.tar.bz2 wix-46278b45b909964ffc6ec3f4fccef07c4931bf55.zip |
Fixed custom action null column decompilation.
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs | 2 |
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 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 | |||
3876 | { | 3876 | { |
3877 | var xRow = new XElement(Names.RowElement); | 3877 | var xRow = new XElement(Names.RowElement); |
3878 | 3878 | ||
3879 | foreach (var field in row.Fields) | 3879 | foreach (var field in row.Fields.Where(f => f.Data != null)) |
3880 | { | 3880 | { |
3881 | var xData = new XElement(Names.DataElement, | 3881 | var xData = new XElement(Names.DataElement, |
3882 | new XAttribute("Column", field.Column.Name), | 3882 | new XAttribute("Column", field.Column.Name), |