Undefined Behavior Sanitization

This commit is contained in:
2026-03-28 21:09:08 +01:00
parent 89259ec9b2
commit 3cd38f654c
5 changed files with 237 additions and 10 deletions
-9
View File
@@ -85,15 +85,6 @@ void thing_main(void* arg)
extern uintptr_t kheap_start;
/* Stack Smashing Protection */
uint64_t __stack_chk_guard = STACK_CHK_GUARD;
void __stack_chk_fail(void)
{
panic(NULL, "SSP: Stask Smashing Detected!!! (very spicy)");
}
/*
* kmain - Kernel entry point
*