Module Name: src Committed By: kamil Date: Sat Feb 8 13:44:35 UTC 2020
Modified Files: src/usr.bin/login: login_pam.c Log Message: Avoid use-after-free bug in PAM environment Traditional BSD putenv(3) was creating an internal copy of the passed argument. Unfortunately this was causing memory leaks and was changed by POSIX to not allocate. Adapt the putenv(3) usage to modern POSIX (and NetBSD) semantics. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/usr.bin/login/login_pam.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.