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

Commit 8bbd22b4 authored by Olivier Gaillard's avatar Olivier Gaillard Committed by Gerrit Code Review
Browse files

Merge "Fix NPE of NativeTombstoneManager.TombstoneWatcher" into main

parents 7b5463ab a8a3f565
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -567,6 +567,10 @@ public final class NativeTombstoneManager {

        @Override
        public void onEvent(int event, @Nullable String path) {
            if (path == null) {
                Slog.w(TAG, "path is null at TombstoneWatcher.onEvent()");
                return;
            }
            mHandler.post(() -> {
                // Ignore .tmp files.
                if (path.endsWith(".tmp")) {