Skip to content

Commit

Permalink
Make sure all patches are cached in time.
Browse files Browse the repository at this point in the history
Make sure all patches are cached even if they apply to earlier packages. If patches are authored later in the sequence, they may not be cached in time to be installed with an MSI already planned.
  • Loading branch information
heaths committed Apr 9, 2014
1 parent ecc727c commit e133f85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/burn/engine/mspengine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -890,8 +890,8 @@ static HRESULT PlanTargetProduct(
pWaitSyncPointAction->type = BURN_EXECUTE_ACTION_TYPE_WAIT_SYNCPOINT;
pWaitSyncPointAction->syncpoint.hEvent = hCacheEvent;

// Since we inserted an action before the MSP target action that we will be updating, need to increment the pointer.
++pAction;
// Since we inserted an action before the MSP target action that we will be updating, need to update the pointer.
pAction = pPlan->rgExecuteActions + (dwInsertSequence + 1);
}
}

Expand Down

0 comments on commit e133f85

Please sign in to comment.