summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authoraurel322008-03-12 00:30:22 +0100
committeraurel322008-03-12 00:30:22 +0100
commitb5eff355460643d09e533024360fe0522f368c07 (patch)
tree14e2e496fc64fdfbb90bb8ca0e957f29eef6a1e7 /linux-user
parentSH4, fix several instructions (diff)
downloadqemu-b5eff355460643d09e533024360fe0522f368c07.tar.gz
qemu-b5eff355460643d09e533024360fe0522f368c07.tar.xz
qemu-b5eff355460643d09e533024360fe0522f368c07.zip
Revert fix for CVE-2008-0928. Will be fixed in a different way later.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4041 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/syscall.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index da39011641..72b80e3fbb 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -3514,6 +3514,9 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
CPUMIPSState *env = (CPUMIPSState*)cpu_env;
env->gpr[env->current_tc][3] = host_pipe[1];
ret = host_pipe[0];
+#elif defined(TARGET_SH4)
+ ((CPUSH4State*)cpu_env)->gregs[1] = host_pipe[1];
+ ret = host_pipe[0];
#else
if (put_user_s32(host_pipe[0], arg1)
|| put_user_s32(host_pipe[1], arg1 + sizeof(host_pipe[0])))