Skip to content

Commit

Permalink
KernelSU: throne_tracker: skip iterate if failed to open dir (#1832)
Browse files Browse the repository at this point in the history
fix tiann/KernelSU#1800

Change-Id: I4661e5fd2258fe4b9719d504bb7f89c1b248709b
  • Loading branch information
5ec1cff authored and ethicalfighter56 committed Nov 30, 2024
1 parent ebff7fb commit 778ef9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/kernelsu/throne_tracker.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,13 @@ void search_manager(const char *path, int depth, struct list_head *uid_data)
file = ksu_filp_open_compat(pos->dirpath, O_RDONLY | O_NOFOLLOW, 0);
if (IS_ERR(file)) {
pr_err("Failed to open directory: %s, err: %ld\n", pos->dirpath, PTR_ERR(file));
return;
goto skip_iterate;
}

iterate_dir(file, &ctx.ctx);
filp_close(file, NULL);
}

skip_iterate:
list_del(&pos->list);
if (pos != &data)
kfree(pos);
Expand Down

0 comments on commit 778ef9d

Please sign in to comment.