[gtk/lsan-leaks: 1/2] Remove libc from leak suppression list




commit a486536925ab7b9615e371ebfcabac64516b4d86
Author: Matthias Clasen <mclasen redhat com>
Date:   Fri Jan 22 00:12:46 2021 -0500

    Remove libc from leak suppression list
    
    Every program starts in __libc_start_main, so this would suppress
    everything. This doesn't happen in practice because asan by default
    is unable to unwind the stack. Setting
    ASAN_OPTIONS=fast_unwind_on_malloc=0,malloc_context_size=15 can unwind
    the stack, and if malloc_context_size is large enough it will indeed
    suppress everything.

 lsan.supp | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/lsan.supp b/lsan.supp
index 04bcd658ee..e3912b41e1 100644
--- a/lsan.supp
+++ b/lsan.supp
@@ -1,6 +1,5 @@
 leak:g_quark_init
 leak:xdg_mime_init
-leak:libc.so
 leak:libfontconfig.so
 leak:libEGL_mesa.so
 leak:iris_dri.so


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]