OEMCrypto_DeleteUsageTable now returns OEMCrypto_SUCCESS

Copy of widevine change:
https://widevine-internal-review.googlesource.com/#/c/10911/

OEMCrypto_DeleteUsageTable used to return an error on every call
because UsageTable::Clear always returned false.  Since there is no
error checking that Clear can do, its return type has been changed to
void, and DeleteUsageTable now returns OEMCrypto_SUCCESS for all
calls.

bug: 16799906
Change-Id: Iaa2f572e4b0feb554877579596a7f43a64d20954
This commit is contained in:
Fred Gylys-Colwell
2014-08-12 14:14:46 -07:00
parent 50c7821602
commit 909887923d
3 changed files with 4 additions and 7 deletions

View File

@@ -1277,10 +1277,8 @@ OEMCryptoResult OEMCrypto_DeleteUsageTable() {
if (LogCategoryEnabled(kLoggingTraceOEMCryptoCalls)) {
LOGI("-- OEMCryptoResult OEMCrypto_DeleteUsageTable()\n");
}
if (crypto_engine->usage_table()->Clear()) {
return OEMCrypto_SUCCESS;
}
return OEMCrypto_ERROR_UNKNOWN_FAILURE;
crypto_engine->usage_table()->Clear();
return OEMCrypto_SUCCESS;
}
}; // namespace wvoec_mock