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

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