https://github.com/python/cpython/commit/6e63d84e43fdce3a5bdb899b024cf947d4e48900
commit: 6e63d84e43fdce3a5bdb899b024cf947d4e48900
branch: main
author: Victor Stinner <[email protected]>
committer: vstinner <[email protected]>
date: 2024-06-28T13:10:11+02:00
summary:
gh-121096: Ignore dlopen() leaks in Valgrind suppression file (#121097)
files:
M Misc/valgrind-python.supp
diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp
index 29954c1bbad350..8b2027cd452767 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
#
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]