Skip to content
Snippets Groups Projects
Commit 0e75a926 authored by Olivier Gaillard's avatar Olivier Gaillard Committed by Automerger Merge Worker
Browse files

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

Merge "Fix NPE of NativeTombstoneManager.TombstoneWatcher" into main am: 8bbd22b4 am: 154710d4 am: 3b84abda

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2758848



Change-Id: I261e362aed917eec7bde42cb712a36046006fef6
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 3c971c3b 3b84abda
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