diff options
author | 2013-11-08 20:18:09 +0100 | |
---|---|---|
committer | 2013-11-08 20:18:09 +0100 | |
commit | 3a9739016aab1bb36076b80a9e69d3483f4c6599 (patch) | |
tree | 2a07b42df718db77d8623bf06e3d7f94be58a346 /Misc/valgrind-python.supp | |
parent | Move PyErr_NoMemory() closer to the failure. (diff) | |
download | cpython-3a9739016aab1bb36076b80a9e69d3483f4c6599.tar.gz cpython-3a9739016aab1bb36076b80a9e69d3483f4c6599.tar.bz2 cpython-3a9739016aab1bb36076b80a9e69d3483f4c6599.zip |
Valgrind: suppress false positive in _PyOS_GetOpt (getopt.c:84) (Invalid read
of size 8: wcscmp (wcscmp.S:464))
Diffstat (limited to 'Misc/valgrind-python.supp')
-rw-r--r-- | Misc/valgrind-python.supp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp index 81a07c9f45a..e612555b6d3 100644 --- a/Misc/valgrind-python.supp +++ b/Misc/valgrind-python.supp @@ -456,6 +456,15 @@ fun:PyUnicode_FSConverter } +{ + wcscmp_false_positive + Memcheck:Addr8 + fun:wcscmp + fun:_PyOS_GetOpt + fun:Py_Main + fun:main +} + # Additional suppressions for the unified decimal tests: { test_decimal |