linux-user: pass correct parameter to do_shmctl()
Fix shmctl issue by passing correct parameter buf to do_shmctl(). Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
This commit is contained in:
parent
55a2b1631f
commit
a29267846a
@ -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 */
|
/* IPC_* and SHM_* command values are the same on all linux platforms */
|
||||||
case IPCOP_shmctl:
|
case IPCOP_shmctl:
|
||||||
ret = do_shmctl(first, second, third);
|
ret = do_shmctl(first, second, ptr);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
|
gemu_log("Unsupported ipc call: %d (version %d)\n", call, version);
|
||||||
|
Loading…
Reference in New Issue
Block a user