diff options
author | Tom Tromey <tromey@redhat.com> | 2012-07-23 14:56:07 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-07-23 14:56:07 +0000 |
commit | 8ee2b379b49d8132dc895ba40e80cf36044358ba (patch) | |
tree | c34a5b7657e58453784779468c53534ae1edde6a /gdb/gcore.c | |
parent | 51152bae0268ce24ede6c2830eefe114821b8e35 (diff) | |
download | gdb-8ee2b379b49d8132dc895ba40e80cf36044358ba.tar.gz |
* bfd-target.c (target_bfd_reopen): Update.
* cli/cli-dump.c (bfd_openr_with_cleanup)
(bfd_openw_with_cleanup): Update.
* corelow.c (core_open): Update.
* dsrec.c (load_srec): Update.
* exec.c (exec_file_attach): Update.
* gcore.c (create_gcore_bfd): Update.
* gdb_bfd.c (gdb_bfd_ref): Return void.
(gdb_bfd_open): Update.
* gdb_bfd.h (gdb_bfd_ref): Return void.
Update comments.
* jit.c (jit_bfd_try_read_symtab): Update.
* m32r-rom.c (m32r_load, m32r_upload_command): Update.
* machoread.c (macho_symfile_read_all_oso): Update.
(macho_check_dsym): Update.
* procfs.c (insert_dbx_link_bpt_in_file): Update.
* remote-m32r-sdi.c (m32r_load): Update.
* remote-mips.c (mips_load_srec, pmon_load_fast): Update.
* rs6000-nat.c (add_vmap): Update.
* solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
Update.
* solib-pa64.c (pa64_solib_create_inferior_hook): Update.
* solib-spu.c (spu_bfd_open): Update.
* solib.c (solib_bfd_fopen, solib_read_symbols): Update.
* spu-linux-nat.c (spu_bfd_open): Update.
* symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
(generic_load): Update.
* windows-nat.c (windows_make_so): Update.
Diffstat (limited to 'gdb/gcore.c')
-rw-r--r-- | gdb/gcore.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/gcore.c b/gdb/gcore.c index f9a138995d4..14432895565 100644 --- a/gdb/gcore.c +++ b/gdb/gcore.c @@ -51,8 +51,9 @@ static int gcore_memory_sections (bfd *); bfd * create_gcore_bfd (char *filename) { - bfd *obfd = gdb_bfd_ref (bfd_openw (filename, default_gcore_target ())); + bfd *obfd = bfd_openw (filename, default_gcore_target ()); + gdb_bfd_ref (obfd); if (!obfd) error (_("Failed to open '%s' for output."), filename); gdb_bfd_stash_filename (obfd); |