Re: [Qemu-devel] [PATCH 01/34] linux-user: Fix array bounds in errno conversion

2015-10-30 Thread Laurent Vivier
Le 12/10/2015 15:42, Riku Voipio a écrit : > On perjantaina 11. syyskuuta 2015 13.59.29 EEST, Peter Maydell wrote: >> On 6 September 2015 at 00:56, Timothy E Baldwin >> wrote: >>> Check array bounds in host_to_target_errno() and target_to_host_errno(). >>> >>> Signed-off-by: Timothy Edward Baldw

Re: [Qemu-devel] [PATCH 01/34] linux-user: Fix array bounds in errno conversion

2015-10-12 Thread Riku Voipio
On perjantaina 11. syyskuuta 2015 13.59.29 EEST, Peter Maydell wrote: On 6 September 2015 at 00:56, Timothy E Baldwin wrote: Check array bounds in host_to_target_errno() and target_to_host_errno(). Signed-off-by: Timothy Edward Baldwin --- linux-user/syscall.c | 4 ++-- 1 file changed, 2 ins

Re: [Qemu-devel] [PATCH 01/34] linux-user: Fix array bounds in errno conversion

2015-09-11 Thread Peter Maydell
On 6 September 2015 at 00:56, Timothy E Baldwin wrote: > Check array bounds in host_to_target_errno() and target_to_host_errno(). > > Signed-off-by: Timothy Edward Baldwin > --- > linux-user/syscall.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/linux-user/syscall

Re: [Qemu-devel] [PATCH 01/34] linux-user: Fix array bounds in errno conversion

2015-09-10 Thread Peter Maydell
On 6 September 2015 at 00:56, Timothy E Baldwin wrote: > Check array bounds in host_to_target_errno() and target_to_host_errno(). > > Signed-off-by: Timothy Edward Baldwin > --- > linux-user/syscall.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/linux-user/syscall

[Qemu-devel] [PATCH 01/34] linux-user: Fix array bounds in errno conversion

2015-09-05 Thread Timothy E Baldwin
Check array bounds in host_to_target_errno() and target_to_host_errno(). Signed-off-by: Timothy Edward Baldwin --- linux-user/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 264debc..4e40dc6 100644 --- a/linux-us