mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-31 14:25:15 +00:00
Don't try to audit failure if the runas user does not exist. We don't
have the user's command at this point so there is nothing to audit. Add a NULL check in audit_success() and audit_failure() just to be on the safe side.
This commit is contained in:
@@ -41,6 +41,9 @@
|
||||
void
|
||||
audit_success(char *exec_args[])
|
||||
{
|
||||
if (exec_args == NULL)
|
||||
return;
|
||||
|
||||
#ifdef HAVE_BSM_AUDIT
|
||||
bsm_audit_success(exec_args);
|
||||
#endif
|
||||
@@ -50,10 +53,13 @@ audit_success(char *exec_args[])
|
||||
}
|
||||
|
||||
void
|
||||
audit_failure(char **exec_args, char const *const fmt, ...)
|
||||
audit_failure(char *exec_args[], char const *const fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
if (exec_args == NULL)
|
||||
return;
|
||||
|
||||
va_start(ap, fmt);
|
||||
#ifdef HAVE_BSM_AUDIT
|
||||
bsm_audit_failure(exec_args, fmt, ap);
|
||||
|
Reference in New Issue
Block a user