summaryrefslogtreecommitdiff
path: root/gdb/osfsolib.c
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-09-28 21:55:21 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-09-28 21:55:21 +0000
commitc804ebc6d614890872b82978a0fef56dd8f77537 (patch)
tree0f7a7c0fd623babd70e332a27e9608eeb97eea00 /gdb/osfsolib.c
parent78bdd6a4c9dc0f87410d89504862768c3556db31 (diff)
downloadgdb-c804ebc6d614890872b82978a0fef56dd8f77537.tar.gz
import gdb-1999-09-28 snapshot
Diffstat (limited to 'gdb/osfsolib.c')
-rw-r--r--gdb/osfsolib.c34
1 files changed, 3 insertions, 31 deletions
diff --git a/gdb/osfsolib.c b/gdb/osfsolib.c
index 831fc7526ee..6b05613eb76 100644
--- a/gdb/osfsolib.c
+++ b/gdb/osfsolib.c
@@ -655,38 +655,10 @@ solib_add (arg_string, from_tty, target)
if (count)
{
- int update_coreops;
-
- /* We must update the to_sections field in the core_ops structure
- here, otherwise we dereference a potential dangling pointer
- for each call to target_read/write_memory within this routine. */
- update_coreops = core_ops.to_sections == target->to_sections;
-
- /* Reallocate the target's section table including the new size. */
- if (target->to_sections)
- {
- old = target->to_sections_end - target->to_sections;
- target->to_sections = (struct section_table *)
- xrealloc ((char *) target->to_sections,
- (sizeof (struct section_table)) * (count + old));
- }
- else
- {
- old = 0;
- target->to_sections = (struct section_table *)
- xmalloc ((sizeof (struct section_table)) * count);
- }
- target->to_sections_end = target->to_sections + (count + old);
-
- /* Update the to_sections field in the core_ops structure
- if needed. */
- if (update_coreops)
- {
- core_ops.to_sections = target->to_sections;
- core_ops.to_sections_end = target->to_sections_end;
- }
-
/* Add these section table entries to the target's table. */
+
+ old = target_resize_to_sections (target, count);
+
while ((so = find_solib (so)) != NULL)
{
if (so->so_name[0])