mirror of
https://github.com/python/cpython.git
synced 2024-11-26 19:34:19 +08:00
gh-121096: Ignore dlopen() leaks in Valgrind suppression file (#121097)
This commit is contained in:
parent
58a3580836
commit
6e63d84e43
@ -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
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user