Skip to content
Commit 98830739 authored by Claudio André's avatar Claudio André Committed by Philip Chimento
Browse files

maint: add ASAN Address Sanitizer

AddressSanitizer (or ASan) is a programming tool that detects memory
corruption bugs such as buffer overflows or use after free. AddressSanitizer
is based on compiler instrumentation.

UndefinedBehaviorSanitizer (or UBSan) is a fast undefined behavior
detector. It modifies the program at compile-time to catch errors
such as using misaligned or null pointer and signed integer overflow.

The llvm.org states that Sanitizers have found thousands of bugs everywhere.
Sanitizers running during CI can prevent bugs from taking up residence. They
are helper tools to maintain bugs out.

https://bugzilla.gnome.org/show_bug.cgi?id=783220
parent 291fa4e6
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment