1
0
Fork 0
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:
Hendiadyoin1 2021-08-22 16:30:03 +02:00 committed by Ali Mohammad Pur
parent b30b7de2d2
commit 607bddac96
Notes: sideshowbarker 2024-07-18 05:21:02 +09:00
4 changed files with 4 additions and 16 deletions

View file

@ -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
}