From 6365154b759e8ded2567f3744de4b357cdc60d5c Mon Sep 17 00:00:00 2001 From: Max Wash Date: Wed, 1 Apr 2026 18:37:10 +0100 Subject: [PATCH] syscall: add missing call to put_current_task --- syscall/task.c | 1 + 1 file changed, 1 insertion(+) diff --git a/syscall/task.c b/syscall/task.c index 8480620..a9077d7 100644 --- a/syscall/task.c +++ b/syscall/task.c @@ -436,6 +436,7 @@ kern_status_t sys_thread_config_set( status = thread_config_set(thread, key, ptr, len); object_unref(thread_obj); + put_current_task(self); return status; }