]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
closes bpo-35204: Disable thread and memory sanitizers for address_in_range(). (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 11 Nov 2018 23:47:59 +0000 (15:47 -0800)
committerGitHub <noreply@github.com>
Sun, 11 Nov 2018 23:47:59 +0000 (15:47 -0800)
commiteff1c983eb0cc9bc011111e8eba07a42522cee57
tree8375db455d194ffb602d62239807fa147714df3d
parent3f6a0a292e12f737448a11660da0c880e8f972be
closes bpo-35204: Disable thread and memory sanitizers for address_in_range(). (GH-10442)

This function may access memory which is mapped but is considered
free by libc allocator. It behaves so by design, therefore we
need to suppress sanitizer reports.

GCC doesn't support MSan, so disable only TSan for it.
(cherry picked from commit fd3a91cbf93dd7bd97f01add9c90075d63cd7316)

Co-authored-by: Alexey Izbyshev <izbyshev@ispras.ru>
Objects/obmalloc.c