aboutsummaryrefslogtreecommitdiff
path: root/gdb/somsolib.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1995-10-12 23:26:06 +0000
committerJeff Law <law@redhat.com>1995-10-12 23:26:06 +0000
commit148070cca4cf7e1b1b7f81835e9ec9991f1895ef (patch)
treefc5e0c036682acf0eb6bc18a0978c752fe8e5a82 /gdb/somsolib.c
parenta8958dd48be372e5b3004c61729071c36f8717a0 (diff)
downloadfsf-binutils-gdb-148070cca4cf7e1b1b7f81835e9ec9991f1895ef.zip
fsf-binutils-gdb-148070cca4cf7e1b1b7f81835e9ec9991f1895ef.tar.gz
fsf-binutils-gdb-148070cca4cf7e1b1b7f81835e9ec9991f1895ef.tar.bz2
* corelow.c (core_open): Don't update the to_sections and
to_sections_end fields in core_ops here. It's too late. * irix5-nat.c (solib_add): Update the to_sections and to_sections_end fields in core_ops here if needed. * osfsolib.c (solib_add): Likewise. * rs6000-nat.c (xcoff_reload_core): Likewise. * solib.c (solib_add): Likewise. * somsolib.c (solib_add): Likewise.
Diffstat (limited to 'gdb/somsolib.c')
-rw-r--r--gdb/somsolib.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/somsolib.c b/gdb/somsolib.c
index 16d9fa0..2744e5c 100644
--- a/gdb/somsolib.c
+++ b/gdb/somsolib.c
@@ -405,6 +405,12 @@ som_solib_add (arg_string, from_tty, target)
if (status != 0)
{
int old, new;
+ 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;
new = new_so->sections_end - new_so->sections;
/* Add sections from the shared library to the core target. */
@@ -422,6 +428,16 @@ som_solib_add (arg_string, from_tty, target)
xmalloc ((sizeof (struct section_table)) * new);
}
target->to_sections_end = (target->to_sections + old + new);
+
+ /* 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;
+ }
+
+ /* Copy over the old data before it gets clobbered. */
memcpy ((char *)(target->to_sections + old),
new_so->sections,
((sizeof (struct section_table)) * new));