commit | 7dd47667b9b0b23807fc1a550644fc2427462f41 | [log] [tgz] |
---|---|---|
author | Peter Maydell <peter.maydell@linaro.org> | Wed Nov 09 19:22:11 2011 +0000 |
committer | Anthony Liguori <aliguori@us.ibm.com> | Fri Nov 11 12:49:53 2011 -0600 |
tree | 51f12d2714c9b19fe289fadda9d6732ed0611b09 | |
parent | 096685fc2a955ea17d5363ab452e301be2b43873 [diff] |
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>