[issue40958] ASAN/UBSAN: heap-buffer-overflow in pegen.c

Christian Heimes report at bugs.python.org
Fri Jun 12 09:53:26 EDT 2020


Christian Heimes <lists at cheimes.de> added the comment:

I'm using an ASAN UBSAN build of Python:

$ make clean
$ ./configure --with-address-sanitizer --with-undefined-behavior-sanitizer
$ cat > asan-suppression.txt << EOF
# Python/initconfig.c
leak:_PyWideStringList_Copy
EOF
$ LSAN_OPTIONS="suppressions=asan-suppression.txt,print_suppressions=0"  make
$ LSAN_OPTIONS="suppressions=asan-suppression.txt,print_suppressions=0" ./python -m test test_eof

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue40958>
_______________________________________


More information about the Python-bugs-list mailing list