mirror of
https://github.com/python/cpython.git
synced 2025-10-14 18:59:46 +00:00
bpo-38118: Ignore Valgrind false alarm in PyUnicode_Decode() (GH-16651)
Valgrind emits "Conditional jump or move depends on uninitialised value(s)" false alarms on GCC builtin strcmp() function. The GCC code is correct. Valgrind bug: https://bugs.kde.org/show_bug.cgi?id=264936
This commit is contained in:
parent
8252c52e57
commit
03ab6b4fc6
2 changed files with 13 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
Update Valgrind suppression file to ignore a false alarm in
|
||||||
|
:c:func:`PyUnicode_Decode` when using GCC builtin strcmp().
|
|
@ -283,6 +283,17 @@
|
||||||
fun:rl_initialize
|
fun:rl_initialize
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Valgrind emits "Conditional jump or move depends on uninitialised value(s)"
|
||||||
|
# false alarms on GCC builtin strcmp() function. The GCC code is correct.
|
||||||
|
#
|
||||||
|
# Valgrind bug: https://bugs.kde.org/show_bug.cgi?id=264936
|
||||||
|
{
|
||||||
|
bpo-38118: Valgrind emits false alarm on GCC builtin strcmp()
|
||||||
|
Memcheck:Cond
|
||||||
|
fun:PyUnicode_Decode
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
### These occur from somewhere within the SSL, when running
|
### These occur from somewhere within the SSL, when running
|
||||||
### test_socket_sll. They are too general to leave on by default.
|
### test_socket_sll. They are too general to leave on by default.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue