diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-07-16 18:44:56 +0100 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2013-07-22 21:54:28 +0300 |
commit | d312bbe1051fa563b557de625ca57a466772abe5 (patch) | |
tree | 4c317a18dceb35a216b2b89ad6b0d9e18a309302 /linux-user/syscall.c | |
parent | 1ccd9374af22ec4ed5f864d4935a9cfad01f1204 (diff) | |
download | qemu-d312bbe1051fa563b557de625ca57a466772abe5.zip |
linux-user: Add missing 'break' in i386 get_thread_area syscall
The i386 code for the get_thread_area syscall was missing a
'break' which meant it would have fallen through into the
implementation of the following syscall; add it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r-- | linux-user/syscall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 9619656d3c..642d0a3620 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -8572,6 +8572,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, case TARGET_NR_get_thread_area: #if defined(TARGET_I386) && defined(TARGET_ABI32) ret = do_get_thread_area(cpu_env, arg1); + break; #elif defined(TARGET_M68K) { TaskState *ts = ((CPUArchState *)cpu_env)->opaque; |