diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-25 21:46:34 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-25 22:58:23 -0500 |
commit | abdde5b4193ecedadcc772f00ff314e1880475b6 (patch) | |
tree | 5dd2074a3abdd5ddada6b87825075a1915d3783e /src/engine/core.cpp | |
parent | 666196071cf29d9b489e598a604ae0998c98b6de (diff) | |
download | wix-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.cpp | 4 |
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 | ||