aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/dnchost/dnchost.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Bal/dnchost/dnchost.cpp')
-rw-r--r--src/ext/Bal/dnchost/dnchost.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ext/Bal/dnchost/dnchost.cpp b/src/ext/Bal/dnchost/dnchost.cpp
index 8ca326fc..dcc9fa56 100644
--- a/src/ext/Bal/dnchost/dnchost.cpp
+++ b/src/ext/Bal/dnchost/dnchost.cpp
@@ -154,9 +154,6 @@ static HRESULT LoadModulePaths(
154 hr = PathGetDirectory(pState->sczModuleFullPath, &pState->sczAppBase); 154 hr = PathGetDirectory(pState->sczModuleFullPath, &pState->sczAppBase);
155 BalExitOnFailure(hr, "Failed to get the directory of the full process path."); 155 BalExitOnFailure(hr, "Failed to get the directory of the full process path.");
156 156
157 hr = PathConcat(pState->sczAppBase, DNC_ASSEMBLY_FILE_NAME, &pState->sczManagedHostPath);
158 BalExitOnFailure(hr, "Failed to create managed host path.");
159
160LExit: 157LExit:
161 return hr; 158 return hr;
162} 159}
@@ -249,7 +246,7 @@ static HRESULT LoadRuntime(
249 hr = DnchostLoadRuntime( 246 hr = DnchostLoadRuntime(
250 &pState->hostfxrState, 247 &pState->hostfxrState,
251 pState->sczModuleFullPath, 248 pState->sczModuleFullPath,
252 pState->sczManagedHostPath, 249 pState->sczBaFactoryAssemblyPath,
253 pState->sczBaFactoryDepsJsonPath, 250 pState->sczBaFactoryDepsJsonPath,
254 pState->sczBaFactoryRuntimeConfigPath); 251 pState->sczBaFactoryRuntimeConfigPath);
255 252