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

Commit 577b6f6a authored by Jim Miller's avatar Jim Miller
Browse files

Fix infinite loop in TrustManagerService exception handler.

Fixes bug 15092272

Change-Id: I972a9134aed18fc160c919eac93e9d488b5691f1
parent d069cd51
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -324,8 +324,6 @@ public class TrustManagerService extends SystemService {
                mTrustListeners.get(i).onTrustChanged(enabled, userId);
            } catch (RemoteException e) {
                Slog.e(TAG, "Exception while notifying TrustListener. Removing listener.", e);
                mTrustListeners.get(i);
                i--;
            }
        }
    }