Re: [Qemu-devel] [PATCH] linux-user: fix realloc size of target_fd_trans.

2016-02-15 Thread Riku Voipio
Hi, Applied to linux-user, thanks Riku On maanantaina 1. helmikuuta 2016 15.40.09 EET, Laurent Vivier wrote: Ping ? Le 18/01/2016 23:50, Laurent Vivier a écrit : target_fd_trans is an array of "TargetFdTrans *": compute size accordingly. Use g_renew() as proposed by Paolo. Reported-by: Paol

Re: [Qemu-devel] [PATCH] linux-user: fix realloc size of target_fd_trans.

2016-02-01 Thread Laurent Vivier
Ping ? Le 18/01/2016 23:50, Laurent Vivier a écrit : > target_fd_trans is an array of "TargetFdTrans *": compute size > accordingly. Use g_renew() as proposed by Paolo. > > Reported-by: Paolo Bonzini > Signed-off-by: Laurent Vivier > --- > linux-user/syscall.c | 4 ++-- > 1 file changed, 2 ins

[Qemu-devel] [PATCH] linux-user: fix realloc size of target_fd_trans.

2016-01-18 Thread Laurent Vivier
target_fd_trans is an array of "TargetFdTrans *": compute size accordingly. Use g_renew() as proposed by Paolo. Reported-by: Paolo Bonzini Signed-off-by: Laurent Vivier --- linux-user/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-user/syscall.c b/linux-