aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r--gdb/symfile.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c
index ecdeaf9..650c4c3 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -1020,13 +1020,15 @@ generic_load (filename, from_tty)
to look at during a long download. */
printf_filtered ("Loading section %s, size 0x%lx lma ",
bfd_get_section_name (loadfile_bfd, s),
- (unsigned long) size);
+ (unsigned long) size);
print_address_numeric (lma, 1, gdb_stdout);
printf_filtered ("\n");
bfd_get_section_contents (loadfile_bfd, s, buffer, 0, size);
- target_write_memory (lma, buffer, size);
+ if (target_write_memory (lma, buffer, size) != 0)
+ error ("Memory access error while loading section %s.",
+ bfd_get_section_name (loadfile_bfd, s));
do_cleanups (old_chain);
}