File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
NEWS.d/next/Core and Builtins Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change
1
+ Update Valgrind suppression list to account for the rename of
2
+ ``Py_ADDRESS_IN_RANG `` to ``address_in_range ``.
Original file line number Diff line number Diff line change 8
8
# ./python -E ./Lib/test/regrtest.py -u gui,network
9
9
#
10
10
# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER
11
- # to use the preferred suppressions with Py_ADDRESS_IN_RANGE .
11
+ # to use the preferred suppressions with address_in_range .
12
12
#
13
13
# If you do not want to recompile Python, you can uncomment
14
14
# suppressions for PyObject_Free and PyObject_Realloc.
19
19
{
20
20
ADDRESS_IN_RANGE/Invalid read of size 4
21
21
Memcheck:Addr4
22
- fun:Py_ADDRESS_IN_RANGE
22
+ fun:address_in_range
23
23
}
24
24
25
25
{
26
26
ADDRESS_IN_RANGE/Invalid read of size 4
27
27
Memcheck:Value4
28
- fun:Py_ADDRESS_IN_RANGE
28
+ fun:address_in_range
29
29
}
30
30
31
31
{
32
32
ADDRESS_IN_RANGE/Invalid read of size 8 (x86_64 aka amd64)
33
33
Memcheck:Value8
34
- fun:Py_ADDRESS_IN_RANGE
34
+ fun:address_in_range
35
35
}
36
36
37
37
{
38
38
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
39
39
Memcheck:Cond
40
- fun:Py_ADDRESS_IN_RANGE
40
+ fun:address_in_range
41
41
}
42
42
43
43
#
You can’t perform that action at this time.
0 commit comments