~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to linux-user/syscall.c

  • Committer: aurel32
  • Date: 2008-03-11 23:30:22 UTC
  • Revision ID: git-v1:b5eff355460643d09e533024360fe0522f368c07
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

Show diffs side-by-side

added added

removed removed

Lines of Context:
3514
3514
                CPUMIPSState *env = (CPUMIPSState*)cpu_env;
3515
3515
                env->gpr[env->current_tc][3] = host_pipe[1];
3516
3516
                ret = host_pipe[0];
 
3517
#elif defined(TARGET_SH4)
 
3518
                ((CPUSH4State*)cpu_env)->gregs[1] = host_pipe[1];
 
3519
                ret = host_pipe[0];
3517
3520
#else
3518
3521
                if (put_user_s32(host_pipe[0], arg1)
3519
3522
                    || put_user_s32(host_pipe[1], arg1 + sizeof(host_pipe[0])))