diff options
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 32cb468..3df8254 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -3486,7 +3486,8 @@ insert_dbx_link_bpt_in_file (int fd, CORE_ADDR ignored) long storage_needed; CORE_ADDR sym_addr; - abfd = gdb_bfd_ref (bfd_fdopenr ("unamed", 0, fd)); + abfd = bfd_fdopenr ("unamed", 0, fd); + gdb_bfd_ref (abfd); if (abfd == NULL) { warning (_("Failed to create a bfd: %s."), bfd_errmsg (bfd_get_error ())); |