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

Commit 154710d4 authored by Olivier Gaillard's avatar Olivier Gaillard Committed by Automerger Merge Worker
Browse files

Merge "Fix NPE of NativeTombstoneManager.TombstoneWatcher" into main am: 8bbd22b4

parents 42ee836e 8bbd22b4
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")) {