From: Ulrich Hecht Date: Tue, 14 Apr 2009 16:25:41 +0200 Subject: qemu-cvs-gettimeofday No clue what this is for. [BR: minor edits to pass qemu's checkpatch script] Signed-off-by: Bruce Rogers --- linux-user/syscall.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 95d79ddc437a6741586071af532f..1e7f0206f4e4852c317f8ab0a7b6 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -9534,6 +9534,9 @@ static abi_long do_syscall1(void *cpu_env, int num, abi_long arg1, { struct timeval tv; struct timezone tz; + if (copy_from_user_timeval(&tv, arg1)) { + return -TARGET_EFAULT; + } ret = get_errno(gettimeofday(&tv, &tz)); if (!is_error(ret)) {