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

Commit fc0b1af2 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

[PATCH] __user annotations for pointers in i386 sigframe

parent 85c39206
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
struct sigframe
{
	char *pretcode;
	char __user *pretcode;
	int sig;
	struct sigcontext sc;
	struct _fpstate fpstate;
@@ -10,10 +10,10 @@ struct sigframe

struct rt_sigframe
{
	char *pretcode;
	char __user *pretcode;
	int sig;
	struct siginfo *pinfo;
	void *puc;
	struct siginfo __user *pinfo;
	void __user *puc;
	struct siginfo info;
	struct ucontext uc;
	struct _fpstate fpstate;