mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
linux-user/elfload.c: Don't memset(NULL..) if malloc() failed
If a malloc() in copy_elf_strings() failed we would call memset() before the "did malloc fail?" check. Fix this by moving to the glib alloc/free routines for this memory so we can use g_try_malloc0 rather than having a separate memset(). Spotted by Coverity (see bug 887883). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
096685fc2a
commit
7dd47667b9
2 changed files with 3 additions and 4 deletions
|
@ -178,7 +178,7 @@ int loader_exec(const char * filename, char ** argv, char ** envp,
|
|||
|
||||
/* Something went wrong, return the inode and free the argument pages*/
|
||||
for (i=0 ; i<MAX_ARG_PAGES ; i++) {
|
||||
free(bprm->page[i]);
|
||||
g_free(bprm->page[i]);
|
||||
}
|
||||
return(retval);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue