mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
toplevel: remove error handling from qemu_malloc() callers (Avi Kivity)
Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6531 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
0d0266a53b
commit
1eec614b36
25 changed files with 25 additions and 254 deletions
|
@ -2189,11 +2189,6 @@ static void gdb_accept(void)
|
|||
setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *)&val, sizeof(val));
|
||||
|
||||
s = qemu_mallocz(sizeof(GDBState));
|
||||
if (!s) {
|
||||
errno = ENOMEM;
|
||||
perror("accept");
|
||||
return;
|
||||
}
|
||||
|
||||
memset (s, 0, sizeof (GDBState));
|
||||
s->c_cpu = first_cpu;
|
||||
|
@ -2311,9 +2306,6 @@ int gdbserver_start(const char *port)
|
|||
return -1;
|
||||
|
||||
s = qemu_mallocz(sizeof(GDBState));
|
||||
if (!s) {
|
||||
return -1;
|
||||
}
|
||||
s->c_cpu = first_cpu;
|
||||
s->g_cpu = first_cpu;
|
||||
s->chr = chr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue