mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
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
This commit is contained in:
parent
24988dc241
commit
b5eff35546
7 changed files with 6 additions and 79 deletions
|
@ -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])))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue