| Index: build/sanitizers/lsan_suppressions.cc
|
| diff --git a/build/sanitizers/lsan_suppressions.cc b/build/sanitizers/lsan_suppressions.cc
|
| index afe4c356e9c2064d04457a8b92fee2d33baa4f99..628589537b422b12ebeddf1048ba006ae97799f6 100644
|
| --- a/build/sanitizers/lsan_suppressions.cc
|
| +++ b/build/sanitizers/lsan_suppressions.cc
|
| @@ -21,6 +21,12 @@ char kLSanDefaultSuppressions[] =
|
|
|
| // False positives in libfontconfig. http://crbug.com/39050
|
| "leak:libfontconfig\n"
|
| +// eglibc-2.19/string/strdup.c creates false positive leak errors because of the
|
| +// same reason as crbug.com/39050. The leak error stack trace, when unwind on
|
| +// malloc, includes a call to libfontconfig. But the default stack trace is too
|
| +// short in leak sanitizer bot to make the libfontconfig suppression works.
|
| +// http://crbug.com/605286
|
| +"leak:__strdup\n"
|
|
|
| // Leaks in Nvidia's libGL.
|
| "leak:libGL.so\n"
|
|
|