mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-09 09:34:57 +09:00
AK: Use explode_byte for pointer sanitization
This commit is contained in:
parent
b30b7de2d2
commit
607bddac96
Notes:
sideshowbarker
2024-07-18 05:21:02 +09:00
Author: https://github.com/Hendiadyoin1
Commit: 607bddac96
Pull-request: https://github.com/SerenityOS/serenity/pull/9573
4 changed files with 4 additions and 16 deletions
|
@ -43,10 +43,7 @@ public:
|
|||
{
|
||||
clear();
|
||||
#ifdef SANITIZE_PTRS
|
||||
if constexpr (sizeof(T*) == 8)
|
||||
m_ptr = (T*)(0xe1e1e1e1e1e1e1e1);
|
||||
else
|
||||
m_ptr = (T*)(0xe1e1e1e1);
|
||||
m_ptr = (T*)(explode_byte(0xe1));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue