aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Decompile
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Decompile')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs2
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 ea9cac07..560b5437 100644
--- a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
@@ -747,7 +747,7 @@ namespace WixToolset.Core.WindowsInstaller
747 property.Id = id; 747 property.Id = id;
748 748
749 // create a dummy row for indexing 749 // create a dummy row for indexing
750 var row = new Row(null, this.tableDefinitions["Property"]); 750 var row = this.tableDefinitions["Property"].CreateRow(null);
751 row[0] = id; 751 row[0] = id;
752 752
753 this.core.RootElement.AddChild(property); 753 this.core.RootElement.AddChild(property);