diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-01-05 21:51:00 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-01-06 23:02:07 -0600 |
commit | c2b00d75493798d9f2452d5e5014b14afcb14889 (patch) | |
tree | 7788e6a9caf38ff1e921112cd893e53cccb8efbf /src/burn/engine/registration.cpp | |
parent | 5b48edfd77da6a7f1c499ad30ea95b66f26ee56d (diff) | |
download | wix-c2b00d75493798d9f2452d5e5014b14afcb14889.tar.gz wix-c2b00d75493798d9f2452d5e5014b14afcb14889.tar.bz2 wix-c2b00d75493798d9f2452d5e5014b14afcb14889.zip |
Always run upgrade related bundles last.
#5128
Diffstat (limited to 'src/burn/engine/registration.cpp')
-rw-r--r-- | src/burn/engine/registration.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/burn/engine/registration.cpp b/src/burn/engine/registration.cpp index 9cc4b199..ffeb39d1 100644 --- a/src/burn/engine/registration.cpp +++ b/src/burn/engine/registration.cpp | |||
@@ -585,6 +585,8 @@ extern "C" HRESULT RegistrationDetectRelatedBundles( | |||
585 | hr = RelatedBundlesInitializeForScope(FALSE, pRegistration, &pRegistration->relatedBundles); | 585 | hr = RelatedBundlesInitializeForScope(FALSE, pRegistration, &pRegistration->relatedBundles); |
586 | ExitOnFailure(hr, "Failed to initialize per-user related bundles."); | 586 | ExitOnFailure(hr, "Failed to initialize per-user related bundles."); |
587 | 587 | ||
588 | RelatedBundlesSort(&pRegistration->relatedBundles); | ||
589 | |||
588 | LExit: | 590 | LExit: |
589 | return hr; | 591 | return hr; |
590 | } | 592 | } |