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

Commit 2e9b3e46 authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am 467a2b7c: Merge "Don\'t crash when handling unlinked widget bindings"

* commit '467a2b7c':
  Don't crash when handling unlinked widget bindings
parents 483a0152 467a2b7c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ class AppWidgetServiceImpl {
            final int N = instances.size();
            for (int i = 0; i < N; i++) {
                Provider p = instances.get(i).provider;
                if (p.info != null && pkg.equals(p.info.provider.getPackageName())) {
                if (p != null && p.info != null && pkg.equals(p.info.provider.getPackageName())) {
                    return true;
                }
            }