[scudo] Make the default for size/align checks to not die. (#187799)

This commit is contained in:
Christopher Ferris 2026-03-20 22:32:16 +00:00 committed by GitHub
parent 7a5431eee3
commit 8cc0124508
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,9 +43,9 @@
#define HAVE_PVALLOC 1
#define HAVE_VALLOC 1
// Assume all others will die on these calls.
#define VERIFY_FREE_SIZED_DEATH 1
#define VERIFY_FREE_ALIGNED_SIZED_DEATH 1
// Assume all others will not die on these calls.
#define VERIFY_FREE_SIZED_DEATH 0
#define VERIFY_FREE_ALIGNED_SIZED_DEATH 0
#endif
// GWP-Asan doesn't do these checks.