diff options
author | Jiyong Park <jiyong@google.com> | 2019-05-18 02:20:57 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-05-18 02:20:57 +0000 |
commit | 724cbb080d594b8549b93a4ea32e83644930a7af (patch) | |
tree | ae2e7f7695e4bc18880a9d83c4f4e5b02e93d586 /libnativeloader/native_loader_namespace.h | |
parent | 6efb8e77548ba1e17a7b1bd11b923c74986a4d67 (diff) | |
parent | d970ccb56e399e916b8a660920df3d873c25facb (diff) |
Merge "Fix nullpointer dereference in libnativeloader"
Diffstat (limited to 'libnativeloader/native_loader_namespace.h')
-rw-r--r-- | libnativeloader/native_loader_namespace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnativeloader/native_loader_namespace.h b/libnativeloader/native_loader_namespace.h index 1575f8ccb..71e42477a 100644 --- a/libnativeloader/native_loader_namespace.h +++ b/libnativeloader/native_loader_namespace.h @@ -52,7 +52,7 @@ struct NativeLoaderNamespace { } bool Link(const NativeLoaderNamespace& target, const std::string& shared_libs) const; - void* Load(const std::string& lib_name) const; + void* Load(const char* lib_name) const; char* GetError() const; static NativeLoaderNamespace GetExportedNamespace(const std::string& name, bool is_bridged); |