Based on r282019.
Details
Diff Detail
- Build Status
Buildable 9301 Build 9301: arc lint + arc unit
Event Timeline
lib/lsan/lsan_interceptors.cc | ||
---|---|---|
305 | Don't we need to intercept by mangled names here too? |
lib/lsan/lsan_interceptors.cc | ||
---|---|---|
305 | ASan currently does not. Shouldn't be hard to add the mangled name interception for both ASan and LSan in a second patch (unless you'd rather have it all here). |
lib/lsan/lsan_interceptors.cc | ||
---|---|---|
305 | Why not, let's add them in this patch. |
lib/lsan/lsan_interceptors.cc | ||
---|---|---|
305 | Sounds good. |
lib/lsan/lsan_interceptors.cc | ||
---|---|---|
207 | Use lsan_malloc instead of lsan_memalign, one less parameter and check. |
lib/lsan/lsan_interceptors.cc | ||
---|---|---|
305 | I don't think we can add these on macOS until they're added in libc++, otherwise we get undefined symbol errors. |
lib/lsan/lsan_interceptors.cc | ||
---|---|---|
305 | OK then, let's do it later. |
Use lsan_malloc instead of lsan_memalign, one less parameter and check.