2011-03-02 Michael Snyder <msnyder@vmware.com>

* gdbserver/linux-arm-low.c (arm_arch_setup): Replace malloc
	with xmalloc.
This commit is contained in:
Michael Snyder 2011-03-02 23:40:42 +00:00
parent 3494b66d76
commit c3e8aadde1
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2011-03-02 Michael Snyder <msnyder@vmware.com>
* gdbserver/linux-arm-low.c (arm_arch_setup): Replace malloc
with xmalloc.
* target-descriptions.c (tdesc_gdb_type): No need to call
xstrdup, callee saves a copy.

View File

@ -336,7 +336,7 @@ arm_arch_setup (void)
registers. Support was added in 2.6.30. */
pid = lwpid_of (get_thread_lwp (current_inferior));
errno = 0;
buf = malloc (32 * 8 + 4);
buf = xmalloc (32 * 8 + 4);
if (ptrace (PTRACE_GETVFPREGS, pid, 0, buf) < 0
&& errno == EIO)
{