mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
alpha: osf_sys.c: fix put_tv32 regression
commit 47669fb6b5951d0e09fc99719653e0ac92b50b99 upstream. There was a typo in the new version of put_tv32() that caused an unguarded access of a user space pointer, and failed to return the correct result in gettimeofday(), wait4(), usleep_thread() and old_adjtimex(). This fixes it to give the correct behavior again. Fixes: 1cc6c4635e9f ("osf_sys.c: switch handling of timeval32/itimerval32 to copy_{to,from}_user()") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
632a537b3c
commit
90d1750521
@ -964,8 +964,8 @@ static inline long
|
|||||||
put_tv32(struct timeval32 __user *o, struct timeval *i)
|
put_tv32(struct timeval32 __user *o, struct timeval *i)
|
||||||
{
|
{
|
||||||
return copy_to_user(o, &(struct timeval32){
|
return copy_to_user(o, &(struct timeval32){
|
||||||
.tv_sec = o->tv_sec,
|
.tv_sec = i->tv_sec,
|
||||||
.tv_usec = o->tv_usec},
|
.tv_usec = i->tv_usec},
|
||||||
sizeof(struct timeval32));
|
sizeof(struct timeval32));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user