aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 10:53:00 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 16:02:37 -0700
commitfcba5d0d1cdd052ed0c960d435d5dcb62d22840d (patch)
treed92e031f8a57e1b1d7624c66603b7a3957f4e6f0 /src
parentd0462be8000f18aa7dc0791d02142f000bb19fbf (diff)
downloadwix-fcba5d0d1cdd052ed0c960d435d5dcb62d22840d.tar.gz
wix-fcba5d0d1cdd052ed0c960d435d5dcb62d22840d.tar.bz2
wix-fcba5d0d1cdd052ed0c960d435d5dcb62d22840d.zip
Correctly set nullable row columns
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
index e1781daf..3d9fcf48 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
@@ -870,7 +870,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
870 switch (column.Type) 870 switch (column.Type)
871 { 871 {
872 case ColumnType.Number: 872 case ColumnType.Number:
873 row[i + rowOffset] = tuple.AsNumber(i); 873 row[i + rowOffset] = column.Nullable ? tuple.AsNullableNumber(i) : tuple.AsNumber(i);
874 break; 874 break;
875 875
876 default: 876 default: