Top "Sanitizer" questions

cause of: AddressSanitizer: SEGV on unknown address (null pointer)

I need some advice how to identify the source of the segfault. compiled with ASAN: ==21093==ERROR: AddressSanitizer: SEGV on unknown …

gdb sanitizer address-sanitizer
Clang Address Sanitizer on OS X

I would like to use clang address sanitizer on OSX Mountain Lion, because Valgrind have problems with memory check on …

macos clang sanitizer address-sanitizer
How can I break on UBSan reports in gdb and continue?

Recent versions of GCC and Clang feature Undefined Behavior Sanitizer (UBSan) which is a compile flag (-fsanitize=undefined) that adds …

c gdb sanitizer address-sanitizer ubsan
How I'm supposed to use the sanitizer in clang?

I'm sorry if this is a uber-easy concept, but I find hard to acquire the right mindset in order to …

c++ clang llvm sanitizer