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

Commit a69f0554 authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by Android Git Automerger
Browse files

am 4ca6659f: Merge change 8565 into donut

Merge commit '4ca6659f'

* commit '4ca6659f':
  Fixing bug 2003639 - this is a fix to prevent the AccessibilityManagerService
parents ef348c75 4ca6659f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -368,6 +368,9 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub
     * @param event The event.
     */
    private void tryRecycleLocked(AccessibilityEvent event) {
        if (event == null) {
            return;
        }
        int eventType = event.getEventType();
        List<Service> services = mServices;

@@ -378,7 +381,6 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub
                return;
            }
        }

        event.recycle();
    }