8000 [3.12] gh-121096: Ignore dlopen() leaks in Valgrind suppression file … · python/cpython@21a63b9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 21a63b9

Browse files
[3.12] gh-121096: Ignore dlopen() leaks in Valgrind suppression file (GH-121097) (#121123)
gh-121096: Ignore dlopen() leaks in Valgrind suppression file (GH-121097) (cherry picked from commit 6e63d84) Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 2a68ed9 commit 21a63b9

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

Misc/valgrind-python.supp

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,49 @@
103103
fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING
104104
}
105105

106+
#
107+
# Leaks: dlopen() called without dlclose()
108+
#
109+
110+
{
111+
dlopen() called without dlclose()
112+
Memcheck:Leak
113+
fun:malloc
114+
fun:malloc
115+
fun:strdup
116+
fun:_dl_load_cache_lookup
117+
}
118+
{
119+
dlopen() called without dlclose()
120+
Memcheck:Leak
121+
fun:malloc
122+
fun:malloc
123+
fun:strdup
124+
fun:_dl_map_object
125+
}
126+
{
127+
dlopen() called without dlclose()
128+
Memcheck:Leak
129+
fun:malloc
130+
fun:*
131+
fun:_dl_new_object
132+
}
133+
{
134+
dlopen() called without dlclose()
135+
Memcheck:Leak
136+
fun:calloc
137+
fun:*
138+
fun:_dl_new_object
139+
}
140+
{
141+
dlopen() called without dlclose()
142+
Memcheck:Leak
143+
fun:calloc
144+
fun:*
145+
fun:_dl_check_map_versions
146+
}
147+
148+
106149
#
107150
# Non-python specific leaks
108151
#

0 commit comments

Comments
 (0)
0