Commit 9462dc59 authored by Richard Guy Briggs's avatar Richard Guy Briggs Committed by Eric Paris

audit: remove unused envc member of audit_aux_data_execve

Get rid of write-only audit_aux_data_exeve structure member envc.
Signed-off-by: default avatarRichard Guy Briggs <rgb@redhat.com>
Signed-off-by: default avatarEric Paris <eparis@redhat.com>
parent bd131fb1
...@@ -98,7 +98,6 @@ struct audit_aux_data { ...@@ -98,7 +98,6 @@ struct audit_aux_data {
struct audit_aux_data_execve { struct audit_aux_data_execve {
struct audit_aux_data d; struct audit_aux_data d;
int argc; int argc;
int envc;
struct mm_struct *mm; struct mm_struct *mm;
}; };
...@@ -2158,7 +2157,6 @@ int __audit_bprm(struct linux_binprm *bprm) ...@@ -2158,7 +2157,6 @@ int __audit_bprm(struct linux_binprm *bprm)
return -ENOMEM; return -ENOMEM;
ax->argc = bprm->argc; ax->argc = bprm->argc;
ax->envc = bprm->envc;
ax->mm = bprm->mm; ax->mm = bprm->mm;
ax->d.type = AUDIT_EXECVE; ax->d.type = AUDIT_EXECVE;
ax->d.next = context->aux; ax->d.next = context->aux;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment