From 8f3c366e9671dc5d4931dd3de28a42a1f1be32a5 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Fri, 20 Feb 2026 19:18:23 -0500 Subject: Configurable-scope bundles for WixStdBA. Fixes https://github.com/wixtoolset/issues/issues/9234 Fixes https://github.com/wixtoolset/issues/issues/9235 --- src/burn/engine/core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/burn/engine/core.cpp') diff --git a/src/burn/engine/core.cpp b/src/burn/engine/core.cpp index 5483e46f..da4ea91b 100644 --- a/src/burn/engine/core.cpp +++ b/src/burn/engine/core.cpp @@ -453,7 +453,7 @@ extern "C" HRESULT CorePlan( pEngineState->fPlanned = FALSE; PlanReset(&pEngineState->plan, &pEngineState->variables, &pEngineState->containers, &pEngineState->packages, &pEngineState->layoutPayloads); - hr = PlanSetVariables(action, pEngineState->registration.scope, pEngineState->plan.plannedScope, &pEngineState->variables); + hr = PlanSetVariables(action, pEngineState->plan.plannedScope, &pEngineState->variables); ExitOnFailure(hr, "Failed to update plan variables."); // Remember the overall action state in the plan since it shapes the changes @@ -569,7 +569,7 @@ extern "C" HRESULT CorePlan( LogPackages(pUpgradeBundlePackage, pForwardCompatibleBundlePackage, &pEngineState->packages, &pEngineState->registration.relatedBundles, action); } - hr = PlanSetVariables(action, pEngineState->registration.scope, pEngineState->plan.plannedScope, &pEngineState->variables); + hr = PlanSetVariables(action, pEngineState->plan.plannedScope, &pEngineState->variables); ExitOnFailure(hr, "Failed to update plan variables after planning."); PlanDump(&pEngineState->plan); -- cgit v1.2.3-55-g6feb