Skip to content
Snippets Groups Projects
Commit 3b84abda 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 am: 154710d4

parents e5315e34 154710d4
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