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

Commit 152942be authored by Andrew Wilson's avatar Andrew Wilson
Browse files

Compare binder instances when checking if listeners match.

Bug: 9069919
Change-Id: I06130105cb703de35de76ab2fceba3855fa5407a
parent 5c11e8ee
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -762,7 +762,8 @@ public class NotificationManagerService extends INotificationManager.Stub
            final int N = mListeners.size();
            for (int i=N-1; i>=0; i--) {
                final NotificationListenerInfo info = mListeners.get(i);
                if (info.listener == listener && info.userid == userid) {
                if (info.listener.asBinder() == listener.asBinder()
                        && info.userid == userid) {
                    mListeners.remove(i);
                    if (info.connection != null) {
                        mContext.unbindService(info.connection);