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

Commit 347c2780 authored by Shreyas Basarge's avatar Shreyas Basarge
Browse files

Fix for possible NPE in JobScheduler

Fixes a possible NPE in JobScheduler

Change-Id: I4faa414ea92ab65326001f83de4624834b5ed955
parent 4bfa55d4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -905,6 +905,11 @@ public class JobSchedulerService extends com.android.server.SystemService
                    minPriorityContextId = i;
                    break;
                }
                if (job == null) {
                    // No job on this context, but nextPending can't run here because
                    // the context has a preferred Uid.
                    continue;
                }
                if (job.getUid() != nextPending.getUid()) {
                    continue;
                }