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

Commit c90a3bc5 authored by Al Viro's avatar Al Viro
Browse files

m32r: fix __get_user()



Cc: stable@vger.kernel.org
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 8f035983
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -219,7 +219,7 @@ extern int fixup_exception(struct pt_regs *regs);
#define __get_user_nocheck(x, ptr, size)				\
({									\
	long __gu_err = 0;						\
	unsigned long __gu_val;						\
	unsigned long __gu_val = 0;					\
	might_fault();							\
	__get_user_size(__gu_val, (ptr), (size), __gu_err);		\
	(x) = (__force __typeof__(*(ptr)))__gu_val;			\