3b42969e09
Update to v5.0.0 OBS-URL: https://build.opensuse.org/request/show/798748 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=547
27 lines
844 B
Diff
27 lines
844 B
Diff
From: Ulrich Hecht <uli@suse.de>
|
|
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 <brogers@suse.com>
|
|
---
|
|
linux-user/syscall.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
|
index 05f03919ff070a06444d82e86a70..1a350d1a9e0ff9f99e36817a6ecc 100644
|
|
--- a/linux-user/syscall.c
|
|
+++ b/linux-user/syscall.c
|
|
@@ -8837,6 +8837,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)) {
|