From: Victor Stinner Date: Fri, 28 Jun 2024 11:10:11 +0000 (+0200) Subject: gh-121096: Ignore dlopen() leaks in Valgrind suppression file (#121097) X-Git-Tag: v3.14.0a1~1298 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e63d84e43fdce3a5bdb899b024cf947d4e48900;p=thirdparty%2FPython%2Fcpython.git gh-121096: Ignore dlopen() leaks in Valgrind suppression file (#121097) --- diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp index 29954c1bbad3..8b2027cd4527 100644 --- a/Misc/valgrind-python.supp +++ b/Misc/valgrind-python.supp @@ -95,6 +95,49 @@ fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING } +# +# Leaks: dlopen() called without dlclose() +# + +{ + dlopen() called without dlclose() + Memcheck:Leak + fun:malloc + fun:malloc + fun:strdup + fun:_dl_load_cache_lookup +} +{ + dlopen() called without dlclose() + Memcheck:Leak + fun:malloc + fun:malloc + fun:strdup + fun:_dl_map_object +} +{ + dlopen() called without dlclose() + Memcheck:Leak + fun:malloc + fun:* + fun:_dl_new_object +} +{ + dlopen() called without dlclose() + Memcheck:Leak + fun:calloc + fun:* + fun:_dl_new_object +} +{ + dlopen() called without dlclose() + Memcheck:Leak + fun:calloc + fun:* + fun:_dl_check_map_versions +} + + # # Non-python specific leaks #