]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-121460: Skip freeing unallocated arenas (gh-121491)
authorStefano Rivera <stefano@rivera.za.net>
Wed, 10 Jul 2024 16:40:55 +0000 (09:40 -0700)
committerGitHub <noreply@github.com>
Wed, 10 Jul 2024 16:40:55 +0000 (10:40 -0600)
commita802277914405786f6425f2776605c44bd407fc0
treef089f908c1f00c43e9bc246eb1dc68683ec2d3ef
parent0177a343353d88ca8475dccabf6e98e164abb0e8
gh-121460: Skip freeing unallocated arenas (gh-121491)

`munmap(NULL)` is not noop, like `free(NULL)` is.

Fixes an observed testsuite hang on 32-bit ARM systems.
Objects/obmalloc.c