Top "Address-sanitizer" questions

AddressSanitizer (ASAN) is a fast memory error detector for issues such as out-of-bounds access and more.

How to make AddressSanitizer not stop after one error (and other issues)

I'm running OS X, 10.8.5; I've installed llvm 3.4 via homebrew (clang version 3.4 (tags/RELEASE_34/final) ), and I'm building with -fsanitize=address. …

macos clang llvm address-sanitizer
ASAN heap use after free

I am running ASAN for finding memory leaks in a very big project. I have found out the cause, but …

c malloc heap free address-sanitizer
UBSan And Asan usage with GCC 4.9.2

I have compiled my application with -fsanitize=undefined option. How can I now test my application for undefined behavior? Also, …

c++ gcc undefined-behavior address-sanitizer ubsan
How do I get line numbers in the debug output with clang's -fsanitize=address?

I am trying to debug a memory error detected by clang with asan, but missed by valgrind. But I cannot …

c clang address-sanitizer
Get line numbers with AddressSanitizer output?

I'm trying to get AddressSanitizer to produce line numbers in its stack traces. I've tried on by a Mac and …

debugging address-sanitizer
How to find reason of memory leak with Leak Sanitizer

I have a C++ program that uses tbb, I am compiling on 64bit Linux with GCC 6.2.1. When I compile with …

c++ memory-leaks address-sanitizer