qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 12/14] linux-user: syscall should use sanitized arg1


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 12/14] linux-user: syscall should use sanitized arg1
Date: Thu, 2 Jun 2011 13:53:47 +0200

Looking at the other architectures, we should be using "how" not "arg1".

Signed-off-by: Juan Quintela <address@hidden>
---
 linux-user/syscall.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index f3d03b0..c90fcc2 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -7077,7 +7077,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
             }
             mask = arg2;
             target_to_host_old_sigset(&set, &mask);
-            sigprocmask(arg1, &set, &oldset);
+            sigprocmask(how, &set, &oldset);
             host_to_target_old_sigset(&mask, &oldset);
             ret = mask;
         }
-- 
1.7.5.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]