aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>1997-06-13 19:56:51 +0000
committerDavid Edelsohn <dje.gcc@gmail.com>1997-06-13 19:56:51 +0000
commita6b6627ba21710e18c5c72dcd46cc59bccba3e23 (patch)
tree4ef401bbdb667013073346bd3950b250fa5d258d /gdb
parent40b647e9e227be8176afeb77f219c3cfb44d2d06 (diff)
downloadgdb-a6b6627ba21710e18c5c72dcd46cc59bccba3e23.zip
gdb-a6b6627ba21710e18c5c72dcd46cc59bccba3e23.tar.gz
gdb-a6b6627ba21710e18c5c72dcd46cc59bccba3e23.tar.bz2
* symfile.c (generic_load): Check return code of target_write_memory.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/symfile.c6
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cc835d1..303ecbe 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 13 12:55:49 1997 Doug Evans <dje@canuck.cygnus.com>
+
+ * symfile.c (generic_load): Check return code of target_write_memory.
+
Fri Jun 13 10:28:09 1997 Fred Fish <fnf@cygnus.com>
* config/i386/nm-linux.h: Enable prototypes that were #ifdef out.
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);
}