39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
diff --git a/plugins/sudoers/match_command.c b/plugins/sudoers/match_command.c
|
|
index ad9db1e..f1c09bd 100644
|
|
--- a/plugins/sudoers/match_command.c
|
|
+++ b/plugins/sudoers/match_command.c
|
|
@@ -712,12 +712,16 @@ command_matches(const char *sudoers_cmnd, const char *sudoers_args,
|
|
/* Rule-specific runchroot, reset user_cmnd and user_stat. */
|
|
int status;
|
|
|
|
+ /* Save old user_cmnd first, set_cmnd_path() will free it. */
|
|
saved_user_cmnd = user_cmnd;
|
|
+ user_cmnd = NULL;
|
|
if (user_stat != NULL)
|
|
saved_user_stat = *user_stat;
|
|
status = set_cmnd_path(runchroot);
|
|
- if (status != FOUND)
|
|
+ if (status != FOUND) {
|
|
+ user_cmnd = saved_user_cmnd;
|
|
saved_user_cmnd = NULL;
|
|
+ }
|
|
if (info != NULL)
|
|
info->status = status;
|
|
}
|
|
diff --git a/plugins/sudoers/visudo.c b/plugins/sudoers/visudo.c
|
|
index 55f44d6..b8b2bc5 100644
|
|
--- a/plugins/sudoers/visudo.c
|
|
+++ b/plugins/sudoers/visudo.c
|
|
@@ -230,7 +230,9 @@ main(int argc, char *argv[])
|
|
}
|
|
|
|
/* Mock up a fake sudo_user struct. */
|
|
- user_cmnd = user_base = "";
|
|
+ user_cmnd = user_base = strdup("true");
|
|
+ if (user_cmnd == NULL)
|
|
+ sudo_fatalx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
|
if (geteuid() == 0) {
|
|
const char *user = getenv("SUDO_USER");
|
|
if (user != NULL && *user != '\0')
|
|
|