* win32-nat.c (safe_symbol_file_add_stub): Properly initialize linked list
authorChristopher Faylor <me+cygwin@cgf.cx>
Sat, 13 Oct 2001 01:20:29 +0000 (01:20 +0000)
committerChristopher Faylor <me+cygwin@cgf.cx>
Sat, 13 Oct 2001 01:20:29 +0000 (01:20 +0000)
pointer to beginning rather than one beyond beginning.

gdb/ChangeLog
gdb/win32-nat.c
gdb/windows-nat.c

index d06c216..4c49f85 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-12  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c (safe_symbol_file_add_stub): Properly initialize linked
+       list pointer to beginning rather than one beyond beginning.
+
 2001-10-12  Daniel Jacobowitz  <drow@mvista.com>
 
        * symtab.h (struct block): (ALL_BLOCK_SYMBOLS): New macro.
index 82d4c94..00c9933 100644 (file)
@@ -450,7 +450,7 @@ static int
 safe_symbol_file_add_stub (void *argv)
 {
 #define p ((struct safe_symbol_file_add_args *)argv)
-  struct so_stuff *so = solib_start.next;
+  struct so_stuff *so = &solib_start;
 
   while ((so = so->next))
     if (strcasecmp (so->name, p->name) == 0)
index 82d4c94..00c9933 100644 (file)
@@ -450,7 +450,7 @@ static int
 safe_symbol_file_add_stub (void *argv)
 {
 #define p ((struct safe_symbol_file_add_args *)argv)
-  struct so_stuff *so = solib_start.next;
+  struct so_stuff *so = &solib_start;
 
   while ((so = so->next))
     if (strcasecmp (so->name, p->name) == 0)