linux-user: Check copy_from_user() return value in vma_dump_size()
commit022625a8ade3005addb42700a145bae6a1653240
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 3 Nov 2020 14:15:32 +0000 (3 14:15 +0000)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 4 Nov 2020 21:28:05 +0000 (4 22:28 +0100)
tree3086695ae65625c48212c37351e4c3b62e98ab97
parente4ce178b6153205c2e17a9b719287c83e1e67a72
linux-user: Check copy_from_user() return value in vma_dump_size()

Coverity points out that we don't check the return value from
copy_from_user() in vma_dump_size(). This is to some extent
a "can't happen" error since we've already checked the page
with an access_ok() call earlier, but it's simple enough to
handle the error anyway.

Fixes: Coverity CID 1432362
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20201103141532.19912-1-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/elfload.c