Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: build/sanitizers/asan_suppressions.cc

Issue 2580663002: Roll clang 289575:289750.
Patch Set: suppress Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/clang/scripts/update.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/sanitizers/asan_suppressions.cc
diff --git a/build/sanitizers/asan_suppressions.cc b/build/sanitizers/asan_suppressions.cc
index df94bc895032db40ec0518600969babdb129f157..5a1efb281ea7b43817b197045383e1c025cc101d 100644
--- a/build/sanitizers/asan_suppressions.cc
+++ b/build/sanitizers/asan_suppressions.cc
@@ -6,6 +6,8 @@
// It should only be used under very limited circumstances such as suppressing
// a report caused by an interceptor call in a system-installed library.
+#include "build/build_config.h"
+
#if defined(ADDRESS_SANITIZER)
// Please make sure the code below declares a single string variable
@@ -15,6 +17,11 @@ char kASanDefaultSuppressions[] =
// http://crbug.com/178677
"interceptor_via_lib:libsqlite3.so\n"
+#if defined(OS_MACOSX)
+// http://crbug.com/674435
+"interceptor_via_fun:mig_strncpy\n"
+#endif
+
// PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.
// End of suppressions.
« no previous file with comments | « no previous file | tools/clang/scripts/update.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698