On Tue, Feb 05, 2019 at 05:42:07PM +0000, Peter Maydell wrote: > Coverity warns (CID 1390634) that open_net_route() is not > checking the return value from sscanf(), which means that > it might then use values that aren't initialized. > > Errors here should in general not happen since we're passing > an assumed-good /proc/net/route from the host kernel, but > if we do fail to parse a line then just skip it in the output > we pass to the guest. > > Signed-off-by: Peter Maydell <peter.mayd...@linaro.org> > --- > linux-user/syscall.c | 12 +++++++++--- > 1 file changed, 9 insertions(+), 3 deletions(-)
Reviewed-by: Stefano Garzarella <sgarz...@redhat.com> Thanks, Stefano