Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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")) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment