mirror of
https://github.com/systemd/systemd.git
synced 2025-03-28 02:50:16 +03:00
execute: Do not alter call-by-ref parameter on failure
Prevent free from being called on (a part of) the call-by-reference variable env when setup_pam fails.
This commit is contained in:
parent
1280503b7e
commit
84eada2f7f
@ -835,7 +835,7 @@ static int setup_pam(
|
||||
pam_handle_t *handle = NULL;
|
||||
sigset_t old_ss;
|
||||
int pam_code = PAM_SUCCESS, r;
|
||||
char **e = NULL;
|
||||
char **nv, **e = NULL;
|
||||
bool close_session = false;
|
||||
pid_t pam_pid = 0, parent_pid;
|
||||
int flags = 0;
|
||||
@ -870,8 +870,8 @@ static int setup_pam(
|
||||
goto fail;
|
||||
}
|
||||
|
||||
STRV_FOREACH(e, *env) {
|
||||
pam_code = pam_putenv(handle, *e);
|
||||
STRV_FOREACH(nv, *env) {
|
||||
pam_code = pam_putenv(handle, *nv);
|
||||
if (pam_code != PAM_SUCCESS)
|
||||
goto fail;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user