qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH for-1.6] linux-user: Return success from m68k set_th


From: Peter Maydell
Subject: [Qemu-devel] [PATCH for-1.6] linux-user: Return success from m68k set_thread_area syscall
Date: Mon, 29 Jul 2013 11:31:49 +0100

The m68k set_thread_area syscall implementation failed to set the
return value. Correctly set it zero, since this syscall will always
succeed.

Signed-off-by: Peter Maydell <address@hidden>
---
Oops. Spotted by clang.

 linux-user/syscall.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 3f6db4b..f986548 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -8523,6 +8523,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
       {
           TaskState *ts = ((CPUArchState *)cpu_env)->opaque;
           ts->tp_value = arg1;
+          ret = 0;
           break;
       }
 #else
-- 
1.7.9.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]