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

Commit 880e5d48 authored by Evans Thomas's avatar Evans Thomas Committed by Dianne Hackborn
Browse files

Fix crash when dump() is called on ReceiverList

Bug: 9750621
Change-Id: Ie203bc008747cd2def5839e64b27a2f98dbc6950
parent 7f95595f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ final class ReceiverList extends ArrayList<BroadcastFilter>
    }
    
    void dumpLocal(PrintWriter pw, String prefix) {
        pw.print(prefix); pw.print("app="); pw.print(app.toShortString());
        pw.print(prefix); pw.print("app="); pw.print(app != null ? app.toShortString() : null);
            pw.print(" pid="); pw.print(pid); pw.print(" uid="); pw.print(uid);
            pw.print(" user="); pw.println(userId);
        if (curBroadcast != null || linkedToDeath) {