summaryrefslogtreecommitdiff
path: root/src/burn/engine/core.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-06-03 17:50:50 -0500
committerSean Hall <r.sean.hall@gmail.com>2022-06-07 19:44:36 -0500
commit68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5 (patch)
treeb40803c4ba8d5312ed3d95c66778c2bc87cf0de9 /src/burn/engine/core.cpp
parent8810aa8908ed7887616d86dd5fb821fcfa92f444 (diff)
downloadwix-68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5.tar.gz
wix-68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5.tar.bz2
wix-68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5.zip
Make sure base paths are fully qualified in Burn.
Diffstat (limited to 'src/burn/engine/core.cpp')
-rw-r--r--src/burn/engine/core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/core.cpp b/src/burn/engine/core.cpp
index 39836bce..8dfa0010 100644
--- a/src/burn/engine/core.cpp
+++ b/src/burn/engine/core.cpp
@@ -2211,7 +2211,7 @@ static HRESULT DetectPackagePayloadsCached(
2211 { 2211 {
2212 BURN_PAYLOAD* pPayload = pPackage->payloads.rgItems[i].pPayload; 2212 BURN_PAYLOAD* pPayload = pPackage->payloads.rgItems[i].pPayload;
2213 2213
2214 hr = PathConcatRelativeToBase(sczCachePath, pPayload->sczFilePath, &sczPayloadCachePath); 2214 hr = PathConcatRelativeToFullyQualifiedBase(sczCachePath, pPayload->sczFilePath, &sczPayloadCachePath);
2215 ExitOnFailure(hr, "Failed to concat payload cache path."); 2215 ExitOnFailure(hr, "Failed to concat payload cache path.");
2216 2216
2217 if (FileExistsEx(sczPayloadCachePath, NULL)) 2217 if (FileExistsEx(sczPayloadCachePath, NULL))