Merge "nativeloader: Ignore empty java_permitted_path" into nyc-dev
This commit is contained in:
commit
6edd0c3a68
1 changed files with 3 additions and 1 deletions
|
|
@ -78,7 +78,9 @@ class LibraryNamespaces {
|
|||
|
||||
if (java_permitted_path != nullptr) {
|
||||
ScopedUtfChars path(env, java_permitted_path);
|
||||
permitted_path = permitted_path + ":" + path.c_str();
|
||||
if (path.c_str() != nullptr && path.size() > 0) {
|
||||
permitted_path = permitted_path + ":" + path.c_str();
|
||||
}
|
||||
}
|
||||
|
||||
if (!initialized_ && !InitPublicNamespace(library_path.c_str(), target_sdk_version)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue