qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 5/5] linux-user: pass correct parameter to do_shmctl


From: riku . voipio
Subject: [Qemu-devel] [PATCH 5/5] linux-user: pass correct parameter to do_shmctl()
Date: Fri, 29 Nov 2013 15:43:06 +0200

From: Petar Jovanovic <address@hidden>

Fix shmctl issue by passing correct parameter buf to do_shmctl().

Signed-off-by: Petar Jovanovic <address@hidden>
Signed-off-by: Riku Voipio <address@hidden>
---
 linux-user/syscall.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 5702d4e..efd1453 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -3215,7 +3215,7 @@ static abi_long do_ipc(unsigned int call, int first,
 
        /* IPC_* and SHM_* command values are the same on all linux platforms */
     case IPCOP_shmctl:
-        ret = do_shmctl(first, second, third);
+        ret = do_shmctl(first, second, ptr);
         break;
     default:
        gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
-- 
1.8.1.2




reply via email to

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