From f3009f21d5e7600d6e7ecede7e27cbd9b446d5d5 Mon Sep 17 00:00:00 2001 From: Evgenii Stepanov Date: Fri, 23 Oct 2015 14:49:16 -0700 Subject: [PATCH] Disable container overflow detect on target. Container overflow annotations may cause false positives in partially instrumented binaries. Bug: 25228125, 25212198 Change-Id: Ic587d41698c02e306dece4ad7c6a2a8810c52dbd --- rootdir/asan.options | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rootdir/asan.options b/rootdir/asan.options index 2f1234127..43896a1ba 100644 --- a/rootdir/asan.options +++ b/rootdir/asan.options @@ -1 +1,5 @@ -allow_user_segv_handler=1:detect_odr_violation=0:alloc_dealloc_mismatch=0:allocator_may_return_null=1 +allow_user_segv_handler=1 +detect_odr_violation=0 +alloc_dealloc_mismatch=0 +allocator_may_return_null=1 +detect_container_overflow=0