1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

AK+Kernel+LibSanitizer: Store "ubsan-is-deadly" flag as Atomic<bool>

This commit is contained in:
Andreas Kling 2022-02-03 16:09:40 +01:00
parent 0bebf013e3
commit e86ab57078
4 changed files with 5 additions and 4 deletions

View file

@ -9,7 +9,7 @@
using namespace AK::UBSanitizer;
bool AK::UBSanitizer::g_ubsan_is_deadly { true };
Atomic<bool> AK::UBSanitizer::g_ubsan_is_deadly { true };
extern "C" {