diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:26 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:26 +0000 |
commit | bedf26e6b47b47e8fb72ad4e965a31896466d184 (patch) | |
tree | a55675a3b169cf9d543f32169854fdf9c27588e4 /linux-user | |
parent | fce5ecb7808bee2858789c9e56cb3d3d16e9d37f (diff) | |
download | qemu-bedf26e6b47b47e8fb72ad4e965a31896466d184.tar.gz qemu-bedf26e6b47b47e8fb72ad4e965a31896466d184.tar.bz2 qemu-bedf26e6b47b47e8fb72ad4e965a31896466d184.zip |
linux-user: Remove incorrect break;
Reported-By: Laurent Desnogues <laurent.desnogues@gmail.com>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6503 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 8d52099cb9..40eab4e624 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -4424,7 +4424,6 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, } else ret = get_errno(readlink(path(p), p2, arg3)); - break; } unlock_user(p2, arg2, ret); unlock_user(p, arg1, 0); |