aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2011-03-02 01:09:52 +0000
committerMichael Snyder <msnyder@vmware.com>2011-03-02 01:09:52 +0000
commit53624a9319e4e154f39609188f1d8c26771bd75e (patch)
treeb6b162529fb694aed669dabc91e5ddf3a91e1aed
parent777666697aa35368f095be1fdede3cb4d3d2d183 (diff)
downloadgdb-53624a9319e4e154f39609188f1d8c26771bd75e.zip
gdb-53624a9319e4e154f39609188f1d8c26771bd75e.tar.gz
gdb-53624a9319e4e154f39609188f1d8c26771bd75e.tar.bz2
2011-03-01 Michael Snyder <msnyder@vmware.com>
* cli/cli-dump.c (dump_bfd_file): Check error return and warn.
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/cli/cli-dump.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8694cb1..158d5fc 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,7 @@
2011-03-01 Michael Snyder <msnyder@vmware.com>
+ * cli/cli-dump.c (dump_bfd_file): Check error return and warn.
+
* jv-lang.c (evaluate_subexp_java): Conditional can't be true.
* dwarf2read.c (dwarf2_compute_name): NAME cannot be null here.
diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c
index 4bba10c..ac6270e 100644
--- a/gdb/cli/cli-dump.c
+++ b/gdb/cli/cli-dump.c
@@ -202,7 +202,9 @@ dump_bfd_file (const char *filename, const char *mode,
| SEC_ALLOC
| SEC_LOAD));
osection->entsize = 0;
- bfd_set_section_contents (obfd, osection, buf, 0, len);
+ if (!bfd_set_section_contents (obfd, osection, buf, 0, len))
+ warning (_("writing dump file '%s' (%s)"), filename,
+ bfd_errmsg (bfd_get_error ()));
}
static void