mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 12:05:15 +00:00
Kernel: Move UBSanitizer and AddressSanitizer to Security subdirectory
This commit is contained in:
parent
490856453d
commit
64af4953c2
Notes:
sideshowbarker
2024-07-17 07:08:37 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/64af4953c2 Pull-request: https://github.com/SerenityOS/serenity/pull/17604 Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/kleinesfilmroellchen ✅
4 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,6 @@ set(KERNEL_HEAP_SOURCES
|
|||
)
|
||||
|
||||
set(KERNEL_SOURCES
|
||||
AddressSanitizer.cpp
|
||||
Arch/init.cpp
|
||||
Arch/PageFault.cpp
|
||||
Arch/DeferredCallPool.cpp
|
||||
|
@ -263,8 +262,10 @@ set(KERNEL_SOURCES
|
|||
ScopedCritical.cpp
|
||||
StdLib.cpp
|
||||
Syscall.cpp
|
||||
Security/AddressSanitizer.cpp
|
||||
Security/Random.cpp
|
||||
Security/Jail.cpp
|
||||
Security/UBSanitizer.cpp
|
||||
Syscalls/anon_create.cpp
|
||||
Syscalls/alarm.cpp
|
||||
Syscalls/beep.cpp
|
||||
|
@ -357,7 +358,6 @@ set(KERNEL_SOURCES
|
|||
Tasks/WorkQueue.cpp
|
||||
Time/TimeManagement.cpp
|
||||
TimerQueue.cpp
|
||||
UBSanitizer.cpp
|
||||
UserOrKernelBuffer.cpp
|
||||
)
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#if defined(__SANITIZE_ADDRESS__)
|
||||
|
||||
# include <Kernel/AddressSanitizer.h>
|
||||
# include <Kernel/Security/AddressSanitizer.h>
|
||||
|
||||
void Kernel::AddressSanitizer::shadow_va_check_load(unsigned long address, size_t size, void* return_address)
|
||||
{
|
Loading…
Add table
Reference in a new issue