]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* win32-nat.c (safe_symbol_file_add_stub): Properly initialize linked list
authorChristopher Faylor <me+cygwin@cgf.cx>
Sat, 13 Oct 2001 01:21:05 +0000 (01:21 +0000)
committerChristopher Faylor <me+cygwin@cgf.cx>
Sat, 13 Oct 2001 01:21:05 +0000 (01:21 +0000)
pointer to beginning rather than one beyond beginning.

gdb/ChangeLog
gdb/win32-nat.c

index c57e1997f8b0caa3edee68244c2880c250745c11..d4e0c8fe25dfccc12b1c05d862548f8671894494 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  Andrew Cagney  <ac131313@redhat.com>
 
        * version.in: Bump to 5.0.91.  Add YYYY-MM-DD.
index 82d4c9466080b270116e803059912b6a9f65b923..00c9933e70ed3bbc4e0ffdccb830b73b2271aea2 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)