diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-27 14:23:39 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-27 14:23:39 -0800 |
commit | 68075faa4a60e8016ea7653cfc1396cd00e3f646 (patch) | |
tree | 4656616a3f1030620594ee38a280e4dab8ab9e8e /src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs | |
parent | 9813f0b4054ab0c003529699d1a467db90395980 (diff) | |
download | wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.tar.gz wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.tar.bz2 wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.zip |
Integrate latest Data and Extensibility changes and build light.exe
Diffstat (limited to 'src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs')
-rw-r--r-- | src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs b/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs index 3b41fdf1..6e0ffce6 100644 --- a/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs | |||
@@ -30,7 +30,7 @@ namespace WixToolset.Core.ExtensibilityServices | |||
30 | var row = table.CreateRow(tuple.SourceLineNumbers); | 30 | var row = table.CreateRow(tuple.SourceLineNumbers); |
31 | for (var i = 0; i < tuple.Fields.Length; ++i) | 31 | for (var i = 0; i < tuple.Fields.Length; ++i) |
32 | { | 32 | { |
33 | if (i < tableDefinition.Columns.Count) | 33 | if (i < tableDefinition.Columns.Length) |
34 | { | 34 | { |
35 | var column = tableDefinition.Columns[i]; | 35 | var column = tableDefinition.Columns[i]; |
36 | 36 | ||