commit | 387512c7ecde6446f2e29408af2e16b9fc043807 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@krypto.org> | Sun Dec 30 15:42:32 2018 -0800 |
committer | GitHub <noreply@github.com> | Sun Dec 30 15:42:32 2018 -0800 |
tree | 66e991863076343981c7577cdbf2434449322f55 | |
parent | 1b29c03c95dbffa05f2bac0f8f1a36b21606a504 [diff] |
bpo-28503: Use crypt_r() when available instead of crypt() (GH-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.