summaryrefslogtreecommitdiff
path: root/gdb/somread.c
diff options
context:
space:
mode:
authorRandolph Chung <tausq@debian.org>2005-12-08 00:17:33 +0000
committerRandolph Chung <tausq@debian.org>2005-12-08 00:17:33 +0000
commit88209b0fbea3d47550b0fba1106ad8cbc28b07ee (patch)
tree7712d3586821c609556f87afb41d89795a4a5606 /gdb/somread.c
parent421c07dca75c0e1974a12692e31a485bee814ab0 (diff)
downloadgdb-88209b0fbea3d47550b0fba1106ad8cbc28b07ee.tar.gz
2005-12-08 Randolph Chung <tausq@debian.org>
* somread.c (som_symfile_offsets): Iterate through number of sections in addrs instead of objfile.
Diffstat (limited to 'gdb/somread.c')
-rw-r--r--gdb/somread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/somread.c b/gdb/somread.c
index 50c1f84bab4..813c7a833ae 100644
--- a/gdb/somread.c
+++ b/gdb/somread.c
@@ -442,7 +442,7 @@ som_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs)
/* Note: Here is OK to compare with ".text" because this is the
name that gdb itself gives to that section, not the SOM
name. */
- for (i = 0; i < objfile->num_sections && addrs->other[i].name; i++)
+ for (i = 0; i < addrs->num_sections && addrs->other[i].name; i++)
if (strcmp (addrs->other[i].name, ".text") == 0)
break;
text_addr = addrs->other[i].addr;