From 9424e7bcd65087f346edb49c017a9f567c866b84 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Thu, 19 Feb 2026 19:17:18 +0000 Subject: [PATCH] thread: fix thread object data corruption --- sched/thread.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sched/thread.c b/sched/thread.c index 0b6505f..8786a92 100644 --- a/sched/thread.c +++ b/sched/thread.c @@ -30,7 +30,6 @@ struct thread *thread_alloc(void) } struct thread *t = THREAD_CAST(thread_obj); - memset(t, 0x00, sizeof *t); return t; }