diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-16 10:44:11 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:12:55 -0500 |
commit | e09a129ee276457d02d19a6444657cf3a2c73905 (patch) | |
tree | 0c12325e67a5e60aadfcfee5e14cda66b9868abe /src/engine/registration.cpp | |
parent | acf86637a6350d269e1ae1aa907e38f5138a0fa9 (diff) | |
download | wix-e09a129ee276457d02d19a6444657cf3a2c73905.tar.gz wix-e09a129ee276457d02d19a6444657cf3a2c73905.tar.bz2 wix-e09a129ee276457d02d19a6444657cf3a2c73905.zip |
UX payloads are never external.
Diffstat (limited to 'src/engine/registration.cpp')
-rw-r--r-- | src/engine/registration.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/registration.cpp b/src/engine/registration.cpp index 7435f292..19da543c 100644 --- a/src/engine/registration.cpp +++ b/src/engine/registration.cpp | |||
@@ -593,7 +593,6 @@ extern "C" HRESULT RegistrationSessionBegin( | |||
593 | __in_z LPCWSTR wzEngineWorkingPath, | 593 | __in_z LPCWSTR wzEngineWorkingPath, |
594 | __in BURN_REGISTRATION* pRegistration, | 594 | __in BURN_REGISTRATION* pRegistration, |
595 | __in BURN_VARIABLES* pVariables, | 595 | __in BURN_VARIABLES* pVariables, |
596 | __in BURN_USER_EXPERIENCE* pUserExperience, | ||
597 | __in DWORD dwRegistrationOptions, | 596 | __in DWORD dwRegistrationOptions, |
598 | __in BURN_DEPENDENCY_REGISTRATION_ACTION dependencyRegistrationAction, | 597 | __in BURN_DEPENDENCY_REGISTRATION_ACTION dependencyRegistrationAction, |
599 | __in DWORD64 qwEstimatedSize | 598 | __in DWORD64 qwEstimatedSize |
@@ -609,7 +608,7 @@ extern "C" HRESULT RegistrationSessionBegin( | |||
609 | // Cache bundle executable. | 608 | // Cache bundle executable. |
610 | if (dwRegistrationOptions & BURN_REGISTRATION_ACTION_OPERATIONS_CACHE_BUNDLE) | 609 | if (dwRegistrationOptions & BURN_REGISTRATION_ACTION_OPERATIONS_CACHE_BUNDLE) |
611 | { | 610 | { |
612 | hr = CacheCompleteBundle(pRegistration->fPerMachine, pRegistration->sczExecutableName, pRegistration->sczId, &pUserExperience->payloads, wzEngineWorkingPath | 611 | hr = CacheCompleteBundle(pRegistration->fPerMachine, pRegistration->sczExecutableName, pRegistration->sczId, wzEngineWorkingPath |
613 | #ifdef DEBUG | 612 | #ifdef DEBUG |
614 | , pRegistration->sczCacheExecutablePath | 613 | , pRegistration->sczCacheExecutablePath |
615 | #endif | 614 | #endif |