Skip to content

Commit 8a4990b

Browse files
authored
Merge pull request #1825 from CastagnaIT/fix_filename
[widevine] Fix wrong filename cdm_aarch64_loader.so
2 parents ed197df + 3c295b4 commit 8a4990b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/decrypters/widevine/WVDecrypter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ bool CWVDecrypter::Initialize()
4242
// Kodi kodi::tools::CDllHelper LoadDll() cannot be used because use RTLD_LOCAL,
4343
// and we need the RTLD_GLOBAL flag.
4444
std::string binaryPath;
45-
if (!FILESYS::FindFilePath(FILESYS::GetAddonPath(), "cdm_aarch64_loader.so", binaryPath))
45+
if (!FILESYS::FindFilePath(FILESYS::GetAddonPath(), "libcdm_aarch64_loader.so", binaryPath))
4646
{
47-
LOG::Log(LOGERROR, "Cannot find the cdm_aarch64_loader.so file");
47+
LOG::Log(LOGERROR, "Cannot find the libcdm_aarch64_loader.so file");
4848
return false;
4949
}
5050

0 commit comments

Comments
 (0)