diff options
author | Stefan Krah <skrah@bytereef.org> | 2013-11-08 19:18:09 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2013-11-08 19:18:09 (GMT) |
commit | 2915933f4f95f2c3fe12074031585e15e9285d52 (patch) | |
tree | 0d13a1c242c7ae51021002ae7ee7f8044a552510 /Misc | |
parent | 2fdf4e7b9b30e2e7cae87a01334fca8e6b49eff2 (diff) | |
download | cpython-2915933f4f95f2c3fe12074031585e15e9285d52.zip cpython-2915933f4f95f2c3fe12074031585e15e9285d52.tar.gz cpython-2915933f4f95f2c3fe12074031585e15e9285d52.tar.bz2 |
Valgrind: suppress false positive in _PyOS_GetOpt (getopt.c:84) (Invalid read
of size 8: wcscmp (wcscmp.S:464))
Diffstat (limited to 'Misc')
-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 81a07c9..e612555 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 |