This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: crypt: check error from library call
Type: Stage: resolved
Components: Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson
Priority: normal Keywords: patch

Created on 2019-10-08 04:01 by benjamin.peterson, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16599 merged chibby0ne, 2019-10-08 04:02
Messages (2)
msg354166 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2019-10-08 04:01
(split off from #36161)

The crypt module currently doesn't check for errors from crypt or crypt_r. It should.
msg354168 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2019-10-08 04:22
New changeset 0d3fe8ae4961bf551e7d5e42559e2ede1a08fd7c by Benjamin Peterson (Antonio Gutierrez) in branch 'master':
closes bpo-38402: Check error of primitive crypt/crypt_r. (GH-16599)
https://github.com/python/cpython/commit/0d3fe8ae4961bf551e7d5e42559e2ede1a08fd7c
History
Date User Action Args
2022-04-11 14:59:21adminsetgithub: 82583
2019-10-08 04:22:22benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg354168

stage: patch review -> resolved
2019-10-08 04:02:41chibby0nesetkeywords: + patch
stage: patch review
pull_requests: + pull_request16224
2019-10-08 04:01:58benjamin.petersoncreate