Kernel: Zero initialize threads sse_storage

This commit is contained in:
Bananymous
2023-08-11 00:26:43 +03:00
parent 51532336b0
commit a7f37236bf

View File

@@ -114,7 +114,7 @@ namespace Kernel
uint64_t m_terminate_blockers { 0 };
alignas(16) uint8_t m_sse_storage[512];
alignas(16) uint8_t m_sse_storage[512] {};
friend class Scheduler;
};