diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
commit | 2acceee2182a942e6a79a972009540990f4dfabf (patch) | |
tree | 2ed7ca473f0b49181f1d0214c3450a7eb17f7bcb /gdb/somsolib.c | |
parent | 3e9c42873ee1d0bbb03039baea78c617174f9269 (diff) | |
download | gdb-2acceee2182a942e6a79a972009540990f4dfabf.zip gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.gz gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.bz2 |
import gdb-1999-10-04 snapshot
Diffstat (limited to 'gdb/somsolib.c')
-rw-r--r-- | gdb/somsolib.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/somsolib.c b/gdb/somsolib.c index 65793bd..eb0cf06 100644 --- a/gdb/somsolib.c +++ b/gdb/somsolib.c @@ -287,8 +287,11 @@ som_solib_add_solib_objfile (so, name, from_tty, text_addr) CORE_ADDR text_addr; { obj_private_data_t *obj_private; + struct section_addr_info section_addrs; - so->objfile = symbol_file_add (name, from_tty, text_addr, 0, 0, 0, 0, 1); + memset (§ion_addrs, 0, sizeof (section_addrs)); + section_addrs.text_addr = text_addr; + so->objfile = symbol_file_add (name, from_tty, §ion_addrs, 0, 0, 0, 1); so->abfd = so->objfile->obfd; /* Mark this as a shared library and save private data. |