[pango: 3/5] Remove libc from leak suppression list




commit 6c0f8a5552dad63ff9a9b1824688cfe260a668ce
Author: Szunti <Szunti users noreply github com>
Date:   Fri Jan 8 16:56:15 2021 +0100

    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 06a74df1..8831e7a4 100644
--- a/lsan.supp
+++ b/lsan.supp
@@ -1,5 +1,4 @@
 leak:g_quark_init
-leak:libc.so
 leak:libfontconfig.so
 leak:libcairo.so
 leak:libpixman-1.so


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