Merge upstream r432:
pam_end() already contains a NULL check, and it is not unreasonable to call it with a NULL pamh in a cleanup / error-handling situation. Remove OPENPAM_NONNULL, which may cause gcc to optimize away the NULL check. This fixes a potential NULL pointer dereference in error-handling code in passwd(1).
This commit is contained in:
@@ -72,8 +72,7 @@ pam_close_session(pam_handle_t *_pamh,
|
||||
|
||||
int
|
||||
pam_end(pam_handle_t *_pamh,
|
||||
int _status)
|
||||
OPENPAM_NONNULL((1));
|
||||
int _status);
|
||||
|
||||
int
|
||||
pam_get_data(const pam_handle_t *_pamh,
|
||||
|
||||
Reference in New Issue
Block a user