aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: