[Python-checkins] cpython (2.7): Issue #12612: Add some Valgrind suppressions for 64-bit machines.

matthias.klose python-checkins at python.org
Thu Nov 5 14:42:16 EST 2015


https://hg.python.org/cpython/rev/92dda5f00b0f
changeset:   98977:92dda5f00b0f
branch:      2.7
parent:      98973:692322517a3e
user:        doko at ubuntu.com
date:        Thu Nov 05 20:41:57 2015 +0100
summary:
  Issue #12612: Add some Valgrind suppressions for 64-bit machines.

files:
  Misc/valgrind-python.supp |  24 ++++++++++++++++++++++++
  1 files changed, 24 insertions(+), 0 deletions(-)


diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp
--- a/Misc/valgrind-python.supp
+++ b/Misc/valgrind-python.supp
@@ -137,6 +137,18 @@
 ###}
 ###
 ###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Addr8
+###   fun:PyObject_Free
+###}
+###
+###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Value8
+###   fun:PyObject_Free
+###}
+###
+###{
 ###   ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
 ###   Memcheck:Cond
 ###   fun:PyObject_Free
@@ -155,6 +167,18 @@
 ###}
 ###
 ###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Addr8
+###   fun:PyObject_Realloc
+###}
+###
+###{
+###   ADDRESS_IN_RANGE/Use of uninitialised value of size 8
+###   Memcheck:Value8
+###   fun:PyObject_Realloc
+###}
+###
+###{
 ###   ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
 ###   Memcheck:Cond
 ###   fun:PyObject_Realloc

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list