Print error log only if result is empty
Bug: 253463372 Test: Access Cast creds with MediaDrm plugin Change-Id: Ib40a47f771222864320a7c3e201be7679c8b75fe
This commit is contained in:
parent
753a12a041
commit
ed008e10df
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ std::vector<uint8_t> readBinaryFile(const std::string& file_path) {
|
||||||
dlclose(cast_auth_handle);
|
dlclose(cast_auth_handle);
|
||||||
if (res == 0) {
|
if (res == 0) {
|
||||||
*_aidl_return = signature;
|
*_aidl_return = signature;
|
||||||
status = Status::OK;
|
return toNdkScopedAStatus(Status::OK);
|
||||||
}
|
}
|
||||||
ALOGE("Get empty result from TA");
|
ALOGE("Get empty result from TA");
|
||||||
return toNdkScopedAStatus(status);
|
return toNdkScopedAStatus(status);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue