aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Inscribe/InscribeMsiPackageCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Inscribe/InscribeMsiPackageCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Inscribe/InscribeMsiPackageCommand.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Inscribe/InscribeMsiPackageCommand.cs b/src/WixToolset.Core.WindowsInstaller/Inscribe/InscribeMsiPackageCommand.cs
index 40901d7c..72c876e0 100644
--- a/src/WixToolset.Core.WindowsInstaller/Inscribe/InscribeMsiPackageCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Inscribe/InscribeMsiPackageCommand.cs
@@ -47,8 +47,8 @@ namespace WixToolset.Core.WindowsInstaller.Inscribe
47 Dictionary<string, string> certificates = new Dictionary<string, string>(); 47 Dictionary<string, string> certificates = new Dictionary<string, string>();
48 48
49 // Reset the in-memory tables for this new database 49 // Reset the in-memory tables for this new database
50 Table digitalSignatureTable = new Table(null, this.TableDefinitions["MsiDigitalSignature"]); 50 Table digitalSignatureTable = new Table(this.TableDefinitions["MsiDigitalSignature"]);
51 Table digitalCertificateTable = new Table(null, this.TableDefinitions["MsiDigitalCertificate"]); 51 Table digitalCertificateTable = new Table(this.TableDefinitions["MsiDigitalCertificate"]);
52 52
53 // If any digital signature records exist that are not of the media type, preserve them 53 // If any digital signature records exist that are not of the media type, preserve them
54 if (database.TableExists("MsiDigitalSignature")) 54 if (database.TableExists("MsiDigitalSignature"))