Fix dynamic adapter for license release

Bug: 315186308
Change-Id: If80760d8db4929f1c23917b0e3a86ed38309b487
This commit is contained in:
Vicky Min
2023-12-12 00:20:19 +00:00
committed by Robert Shih
parent d8ce542ff9
commit 3f48387e1c

View File

@@ -2815,7 +2815,7 @@ extern "C" OEMCryptoResult OEMCrypto_GetUsageEntryInfo(
LevelSession pair = gAdapter->GetSession(session);
if (!pair.fcn) return OEMCrypto_ERROR_INVALID_SESSION;
if (pair.fcn->GetUsageEntryInfo != nullptr) {
return fcn->GetUsageEntryInfo(pair.session, status,
return pair.fcn->GetUsageEntryInfo(pair.session, status,
seconds_since_license_received,
seconds_since_first_decrypt);
}