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

Commit d89b76a5 authored by Wale Ogunwale's avatar Wale Ogunwale Committed by android-build-merger
Browse files

Merge "[ActivityManager] Fix NullPointerException in startNextMatchingActivity."

am: 7810aed8

* commit '7810aed8':
  [ActivityManager] Fix NullPointerException in startNextMatchingActivity.
parents 613c63c7 7810aed8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4094,8 +4094,8 @@ public final class ActivityManagerService extends ActivityManagerNative
                        if (debug) {
                            Slog.v(TAG, "Next matching activity: found current " + r.packageName
                                    + "/" + r.info.name);
                            Slog.v(TAG, "Next matching activity: next is " + aInfo.packageName
                                    + "/" + aInfo.name);
                            Slog.v(TAG, "Next matching activity: next is " + ((aInfo == null)
                                    ? "null" : aInfo.packageName + "/" + aInfo.name));
                        }
                        break;
                    }