We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5c33ed commit b03cdc8Copy full SHA for b03cdc8
runtime/src/CoreClr.cpp
@@ -43,7 +43,7 @@ CoreClr::CoreClr(alt::ICore* core) {
43
strcpy(dotnetDirectory, pf);
44
strcat(dotnetDirectory, dotnetProgramFilesPath);
45
46
- GetPath(server, defaultPath);
+ GetPath(core, defaultPath);
47
delete[] defaultPath;
48
#else
49
auto currDotnetDirectory = "/usr/share/dotnet/";
@@ -61,7 +61,7 @@ CoreClr::CoreClr(alt::ICore* core) {
61
_coreClrLib = LoadLibraryEx(fullPath, nullptr, 0);
62
delete[] fullPath;
63
if (_coreClrLib == nullptr) {
64
- server->LogInfo(alt::String("coreclr-module: Unable to find CoreCLR dll"));
+ core->LogInfo(alt::String("coreclr-module: Unable to find CoreCLR dll"));
65
return;
66
}
67
0 commit comments