aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorBob Arnson <bob@joyofsetup.com>2020-03-09 19:50:20 -0400
committerBob Arnson <bob@firegiant.com>2020-03-09 20:00:58 -0400
commit00b945dfc182304a7999aa999f4303078beb2e52 (patch)
treeec4291205630b013762c17a59edafb17d0fd8e34 /src/wixext
parente9d10933bedb8215ec50ca85db272d6647426b31 (diff)
downloadwix-00b945dfc182304a7999aa999f4303078beb2e52.tar.gz
wix-00b945dfc182304a7999aa999f4303078beb2e52.tar.bz2
wix-00b945dfc182304a7999aa999f4303078beb2e52.zip
Make the SecureObjectsTuple Id a bit more resilient.
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/UtilCompiler.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wixext/UtilCompiler.cs b/src/wixext/UtilCompiler.cs
index a8d59ca3..6b359591 100644
--- a/src/wixext/UtilCompiler.cs
+++ b/src/wixext/UtilCompiler.cs
@@ -2452,7 +2452,8 @@ namespace WixToolset.Util
2452 { 2452 {
2453 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedSecureObjects", this.Context.Platform, CustomActionPlatforms.ARM | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); 2453 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedSecureObjects", this.Context.Platform, CustomActionPlatforms.ARM | CustomActionPlatforms.X64 | CustomActionPlatforms.X86);
2454 2454
2455 var tuple = new SecureObjectsTuple(sourceLineNumbers, new Identifier(AccessModifier.Private, objectId)) 2455 var id = this.ParseHelper.CreateIdentifier("sec", objectId, tableName, domain, user);
2456 var tuple = new SecureObjectsTuple(sourceLineNumbers, id)
2456 { 2457 {
2457 Table = tableName, 2458 Table = tableName,
2458 Domain = domain, 2459 Domain = domain,