[proxy] github.com← back | site home | direct (HTTPS) ↗ | proxy home | ◑ dark◐ light

bpo-28503: Use crypt_r() when available instead of crypt() by gpshead · Pull Request #11373 · python/cpython

the-knights-who-say-ni

Closed

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request

Dec 30, 2018
…11373)

Use crypt_r() when available instead of crypt() in the crypt module.

As a nice side effect: This also avoids a memory sanitizer flake as clang msan doesn't know about crypt's internal libc allocated buffer.
(cherry picked from commit 387512c)

Co-authored-by: Gregory P. Smith <greg@krypto.org>

gpshead pushed a commit that referenced this pull request

Dec 31, 2018
…GH-11376)

Use crypt_r() when available instead of crypt() in the crypt module.

As a nice side effect: This also avoids a memory sanitizer flake as clang msan doesn't know about crypt's internal libc allocated buffer.
(cherry picked from commit 387512c)

Co-authored-by: Gregory P. Smith <greg@krypto.org> [Google]

csabella pushed a commit to csabella/cpython that referenced this pull request

Dec 31, 2018
…11373)

Use crypt_r() when available instead of crypt() in the crypt module.

As a nice side effect: This also avoids a memory sanitizer flake as clang msan doesn't know about crypt's internal libc allocated buffer.