OSDN Git Service

* linux-low.c (handle_extended_wait): Do not use "status"
authoruweigand <uweigand>
Sat, 12 Jul 2008 22:22:42 +0000 (22:22 +0000)
committeruweigand <uweigand>
Sat, 12 Jul 2008 22:22:42 +0000 (22:22 +0000)
variable uninitialized.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c

index 105413c..77993c4 100644 (file)
@@ -1,3 +1,8 @@
+2008-07-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * linux-low.c (handle_extended_wait): Do not use "status"
+       variable uninitialized.
+
 2008-07-07  Pedro Alves  <pedro@codesourcery.com>
 
        * server.c (handle_v_attach): Inhibit reporting dll changes.
index b41e679..956b45c 100644 (file)
@@ -149,7 +149,7 @@ handle_extended_wait (struct process_info *event_child, int wstat)
   if (event == PTRACE_EVENT_CLONE)
     {
       unsigned long new_pid;
-      int ret, status;
+      int ret, status = W_STOPCODE (SIGSTOP);
 
       ptrace (PTRACE_GETEVENTMSG, inferior_pid, 0, &new_pid);