Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7abb84f authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "codec2: fix uninitialized member in C2PlatformStorePlguinLoader" am:...

Merge "codec2: fix uninitialized member in C2PlatformStorePlguinLoader" am: 869f1691 am: 5049389b am: fd4150a9 am: 95e5cad1

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/1458982

Change-Id: I629a90a178f7a955ef8f61cea540c1537fbf5ba3
parents 4d031160 95e5cad1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -33,7 +33,8 @@ constexpr const char kStorePluginPath[] = "libc2plugin_store.so";
}  // unnamed

C2PlatformStorePluginLoader::C2PlatformStorePluginLoader(const char *libPath)
    : mCreateBlockPool(nullptr) {
    : mCreateBlockPool(nullptr),
      mCreateAllocator(nullptr) {
    mLibHandle = dlopen(libPath, RTLD_NOW | RTLD_NODELETE);
    if (mLibHandle == nullptr) {
        ALOGD("Failed to load library: %s (%s)", libPath, dlerror());