OSDN Git Service

Fix build failure in inf-ptrace.c.
authorbrobecke <brobecke>
Fri, 1 Jan 2010 16:03:52 +0000 (16:03 +0000)
committerbrobecke <brobecke>
Fri, 1 Jan 2010 16:03:52 +0000 (16:03 +0000)
        * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.

gdb/ChangeLog
gdb/ChangeLog-2009
gdb/inf-ptrace.c

index ac3afb1..d212062 100644 (file)
@@ -1,3 +1,8 @@
+2009-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+       Fix build failure in inf-ptrace.c.
+       * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
+
 2010-01-01  Joel Brobecker  <brobecker@adacore.com>
 
        * top.c (print_gdb_version): Update copyright year.
index 753fbb0..6bee817 100644 (file)
 
 2009-12-30  Joel Brobecker  <brobecker@adacore.com>
 
-       Fix build failure in inf-ptrace.c.
-       * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
-
-2009-12-30  Joel Brobecker  <brobecker@adacore.com>
-
        * breakpoint.c (watchpoint_check): Expand the function description.
 
 2009-12-30  Thiago Jung Bauermann  <bauerman@br.ibm.com>
index a138701..d2df3b1 100644 (file)
@@ -67,8 +67,8 @@ inf_ptrace_follow_fork (struct target_ops *ops, int follow_child)
       child_inf = add_inferior (fpid);
       child_inf->attach_flag = parent_inf->attach_flag;
       copy_terminal_info (child_inf, parent_inf);
-      inf->pspace = parent_inf->pspace;
-      inf->pspace = parent_inf->aspace;
+      child_inf->pspace = parent_inf->pspace;
+      child_inf->aspace = parent_inf->aspace;
 
       /* Before detaching from the parent, remove all breakpoints from
         it.  */