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

Commit 96b14c7d authored by Steven Moreland's avatar Steven Moreland Committed by Android (Google) Code Review
Browse files

Merge "Fix nativeProcs being null."

parents 3ebc1b7f 94a0dcdd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -870,7 +870,7 @@ class AppErrors {
            nativeProcs = NATIVE_STACKS_OF_INTEREST;
        }

        int[] pids = Process.getPidsForCommands(nativeProcs);
        int[] pids = nativeProcs == null ? null : Process.getPidsForCommands(nativeProcs);
        ArrayList<Integer> nativePids = null;

        if (pids != null) {