mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-31 14:02:05 -06:00
pipe argument should not be signed
pipedes is an address, it should not be signed (breaks for addresses > 0x80000000) Signed-off-by: Ulrich Hecht <uli@suse.de> Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
This commit is contained in:
parent
67ba57f63d
commit
784ccfdb36
1 changed files with 1 additions and 1 deletions
|
@ -953,7 +953,7 @@ static abi_long do_pipe2(int host_pipe[], int flags)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static abi_long do_pipe(void *cpu_env, int pipedes, int flags)
|
static abi_long do_pipe(void *cpu_env, abi_ulong pipedes, int flags)
|
||||||
{
|
{
|
||||||
int host_pipe[2];
|
int host_pipe[2];
|
||||||
abi_long ret;
|
abi_long ret;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue