mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 21:33:40 +08:00
elf-loader: Fix truncation warning from coverity
Coverity reports a truncation due to cast operation on operand reltab->sh_size from 64 bits to 32 bits for calls of load_at. Fix the types of the function arguments to match their use in function load_at: the offset is used for lseek which takes an off_t parameter, the size is used for g_malloc and read. Signed-off-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Thomas Huth <thuth@linux.vnet.ibm.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
b76d799ea5
commit
6cbfb86f4c
@ -267,7 +267,7 @@ int load_aout(const char *filename, hwaddr addr, int max_sz,
|
||||
|
||||
/* ELF loader */
|
||||
|
||||
static void *load_at(int fd, int offset, int size)
|
||||
static void *load_at(int fd, off_t offset, size_t size)
|
||||
{
|
||||
void *ptr;
|
||||
if (lseek(fd, offset, SEEK_SET) < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user