diff options
author | balrog | 2007-12-12 00:23:52 +0100 |
---|---|---|
committer | balrog | 2007-12-12 00:23:52 +0100 |
commit | ed494d87f7baf56742d5b699012e3f26e3779e10 (patch) | |
tree | af49c3ba7fc4ee68ba0f4f355f0480bb03d0b696 /linux-user/syscall.c | |
parent | Fix fragments due to incomplete dirty tracking in CGA mode (Anthony Liguori). (diff) | |
download | qemu-ed494d87f7baf56742d5b699012e3f26e3779e10.tar.gz qemu-ed494d87f7baf56742d5b699012e3f26e3779e10.tar.xz qemu-ed494d87f7baf56742d5b699012e3f26e3779e10.zip |
Add missing break just before execve, by Takashi Yoshii.
Fix a comment typo.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3810 c046a42c-6fe2-441c-8c8c-71466251a162
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 0deb041eda..1062fdf03e 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -3178,6 +3178,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, ret = get_errno(sys_unlinkat(arg1, p, arg3)); unlock_user(p, arg2, 0); #endif + break; case TARGET_NR_execve: { char **argp, **envp; |