diff --git a/base/src/ashmem.cpp b/base/src/ashmem.cpp index 8437c4d8d1286702ab82fb255b5f12d625c84d6a..2e05397a7df8db930ba93d5c94234bdce3e88cb5 100755 --- a/base/src/ashmem.cpp +++ b/base/src/ashmem.cpp @@ -42,13 +42,11 @@ openFdFunction ProbeAshmemFdFunction() { auto handle = dlopen("libashmemd_client.so", RTLD_NOW); if (!handle) { - UTILS_LOGE("Failed to open libashmemd_client.so"); return nullptr; } openFdFunction func = reinterpret_cast(dlsym(handle, "openAshmemdFd")); if (!func) { dlclose(handle); - UTILS_LOGE("Failed to obtain address of openFdFunction"); } return func; }