]> Git Repo - qemu.git/blobdiff - gdbstub.c
char: Fix initial reset (Jan Kiszka)
[qemu.git] / gdbstub.c
index b4b8292dba20fba64430ddf6b9e9b40579cf4c35..239f2e0a0ebe631ea4b36fa8b53da3b40b5fc25e 100644 (file)
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -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;
This page took 0.024301 seconds and 4 git commands to generate.