From: Joel Brobecker Date: Wed, 11 Jun 2003 22:36:04 +0000 (+0000) Subject: * win32-nat.c (solib_symbols_add): Fix a small compilation error. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a31f978cb0a2405dacbdc8a765f8baf1a3114a6b;p=binutils-gdb.git * win32-nat.c (solib_symbols_add): Fix a small compilation error. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 86df7a9ccdb..0474c61a8b4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2003-06-11 J. Brobecker + + * win32-nat.c (solib_symbols_add): Fix a small compilation error. + 2003-06-11 David Carlton * block.h (BLOCK_SHOULD_SORT): Delete. diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index c6f8f66fd16..c2227cd29fe 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -847,8 +847,8 @@ solib_symbols_add (char *name, int from_tty, CORE_ADDR load_addr) section_addrs = alloc_section_addr_info (1); my_cleanups = make_cleanup (xfree, section_addrs); - section_addrs.other[0].name = ".text"; - section_addrs.other[0].addr = load_addr; + section_addrs->other[0].name = ".text"; + section_addrs->other[0].addr = load_addr; result = safe_symbol_file_add (name, from_tty, §ion_addrs, 0, OBJF_SHARED); diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index c6f8f66fd16..c2227cd29fe 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -847,8 +847,8 @@ solib_symbols_add (char *name, int from_tty, CORE_ADDR load_addr) section_addrs = alloc_section_addr_info (1); my_cleanups = make_cleanup (xfree, section_addrs); - section_addrs.other[0].name = ".text"; - section_addrs.other[0].addr = load_addr; + section_addrs->other[0].name = ".text"; + section_addrs->other[0].addr = load_addr; result = safe_symbol_file_add (name, from_tty, §ion_addrs, 0, OBJF_SHARED);