Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7cb4dc9f authored by Jiri Slaby's avatar Jiri Slaby Committed by James Morris
Browse files

AppArmor: fix task_setrlimit prototype



After rlimits tree was merged we get the following errors:
security/apparmor/lsm.c:663:2: warning: initialization from incompatible pointer type

It is because AppArmor was merged in the meantime, but uses the old
prototype. So fix it by adding struct task_struct as a first parameter
of apparmor_task_setrlimit.

NOTE that this is ONLY a compilation warning fix (and crashes caused
by that). It needs proper handling in AppArmor depending on who is the
'task'.

Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
Signed-off-by: default avatarJohn Johansen <john.johansen@canonical.com>
Signed-off-by: default avatarJames Morris <jmorris@namei.org>
parent da5cabf8
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -607,8 +607,8 @@ static int apparmor_setprocattr(struct task_struct *task, char *name,
	return error;
	return error;
}
}


static int apparmor_task_setrlimit(unsigned int resource,
static int apparmor_task_setrlimit(struct task_struct *task,
				   struct rlimit *new_rlim)
		unsigned int resource, struct rlimit *new_rlim)
{
{
	struct aa_profile *profile = aa_current_profile();
	struct aa_profile *profile = aa_current_profile();
	int error = 0;
	int error = 0;