Source release 16.3.0

This commit is contained in:
John W. Bruce
2020-07-24 14:30:03 -07:00
parent b830b1d1fb
commit 160df9f57a
74 changed files with 4632 additions and 2561 deletions

View File

@@ -149,9 +149,10 @@ bool Properties::GetFactoryKeyboxPath(std::string*) {
}
// static
bool Properties::GetOEMCryptoPath(std::string*) {
// Unused on CE devices.
return false;
bool Properties::GetOEMCryptoPath(std::string* path) {
if (path == nullptr) return false;
*path = "liboemcrypto.so";
return true;
}
// static