kernel/throne_tracker: Fix missing variable in function my_actor (#266)

This commit is contained in:
TwinbornPlate75
2025-07-08 22:34:01 +08:00
committed by GitHub
parent 6e0fb0b388
commit 340a94ef30

View File

@@ -184,7 +184,7 @@ FILLDIR_RETURN_TYPE my_actor(struct dir_context *ctx, const char *name,
list_add_tail(&data->list, my_ctx->data_path_list); list_add_tail(&data->list, my_ctx->data_path_list);
} else { } else {
if ((namelen == 8) && (strncmp(name, "base.apk", namelen) == 0)) { if ((namelen == 8) && (strncmp(name, "base.apk", namelen) == 0)) {
struct apk_path_hash *pos; struct apk_path_hash *pos, *n;
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0) #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0)
unsigned int hash = full_name_hash(dirpath, strlen(dirpath)); unsigned int hash = full_name_hash(dirpath, strlen(dirpath));
#else #else
@@ -434,4 +434,4 @@ void ksu_throne_tracker_init()
void ksu_throne_tracker_exit() void ksu_throne_tracker_exit()
{ {
// nothing to do // nothing to do
} }