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

Commit 218fc8a7 authored by Arman Uguray's avatar Arman Uguray Committed by Android Git Automerger
Browse files

am c0e88c21: service: Fix bug in RemoteCallbackMap

* commit 'c0e88c21':
  service: Fix bug in RemoteCallbackMap
parents 207577a2 c0e88c21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ sp<V> RemoteCallbackMap<K, V>::Get(const K& key) {
  if (iter == map_.end())
    return nullptr;

  return iter->second;
  return iter->second->get_callback();
}

template<typename K, typename V>