thread: fix thread object data corruption

This commit is contained in:
2026-02-19 19:17:18 +00:00
parent 4c35723959
commit 9424e7bcd6

View File

@@ -30,7 +30,6 @@ struct thread *thread_alloc(void)
}
struct thread *t = THREAD_CAST(thread_obj);
memset(t, 0x00, sizeof *t);
return t;
}