aboutsummaryrefslogtreecommitdiff
path: root/src/engine/core.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-04-25 21:46:34 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-04-25 22:58:23 -0500
commitabdde5b4193ecedadcc772f00ff314e1880475b6 (patch)
tree5dd2074a3abdd5ddada6b87825075a1915d3783e /src/engine/core.cpp
parent666196071cf29d9b489e598a604ae0998c98b6de (diff)
downloadwix-abdde5b4193ecedadcc772f00ff314e1880475b6.tar.gz
wix-abdde5b4193ecedadcc772f00ff314e1880475b6.tar.bz2
wix-abdde5b4193ecedadcc772f00ff314e1880475b6.zip
UX payloads are never external, part 2.
Diffstat (limited to 'src/engine/core.cpp')
-rw-r--r--src/engine/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/core.cpp b/src/engine/core.cpp
index baba55f6..aea614d2 100644
--- a/src/engine/core.cpp
+++ b/src/engine/core.cpp
@@ -579,7 +579,7 @@ extern "C" HRESULT CoreElevate(
579 // If the elevated companion pipe isn't created yet, let's make that happen. 579 // If the elevated companion pipe isn't created yet, let's make that happen.
580 if (!pEngineState->sczBundleEngineWorkingPath) 580 if (!pEngineState->sczBundleEngineWorkingPath)
581 { 581 {
582 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->userExperience.payloads, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath); 582 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath);
583 ExitOnFailure(hr, "Failed to cache engine to working directory."); 583 ExitOnFailure(hr, "Failed to cache engine to working directory.");
584 } 584 }
585 585
@@ -678,7 +678,7 @@ extern "C" HRESULT CoreApply(
678 // Ensure the engine is cached to the working path. 678 // Ensure the engine is cached to the working path.
679 if (!pEngineState->sczBundleEngineWorkingPath) 679 if (!pEngineState->sczBundleEngineWorkingPath)
680 { 680 {
681 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->userExperience.payloads, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath); 681 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath);
682 ExitOnFailure(hr, "Failed to cache engine to working directory."); 682 ExitOnFailure(hr, "Failed to cache engine to working directory.");
683 } 683 }
684 684