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

Commit 09bbfda7 authored by Mikhail Naganov's avatar Mikhail Naganov Committed by Automerger Merge Worker
Browse files

Merge "audiopolicy: engineconfigurable: fix double free issue" into udc-dev...

Merge "audiopolicy: engineconfigurable: fix double free issue" into udc-dev am: b1a986cb am: 1a593a76

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



Change-Id: I0e5b1e6035da74e2fc11be672fbf18b7ce6d1140
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents fc451f13 1a593a76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ status_t Engine::initCheck()
template <typename Key>
Element<Key> *Engine::getFromCollection(const Key &key) const
{
    const Collection<Key> collection = getCollection<Key>();
    const Collection<Key> &collection = getCollection<Key>();
    return collection.get(key);
}