summaryrefslogtreecommitdiff
path: root/gdb/exec.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-05-29 14:23:40 +0000
committerTom Tromey <tromey@redhat.com>2012-05-29 14:23:40 +0000
commit6f0c7050fcfb9db9096f2f988f1104eba427bd6c (patch)
tree676656b0886d01b7ca2a962d9e9bbd344733a28b /gdb/exec.c
parentec95993ca4e10b9b3d09f29a8bf48c8da7c7116f (diff)
downloadbinutils-6f0c7050fcfb9db9096f2f988f1104eba427bd6c.tar.gz
binutils-6f0c7050fcfb9db9096f2f988f1104eba427bd6c.tar.bz2
binutils-6f0c7050fcfb9db9096f2f988f1104eba427bd6c.zip
bfd/
* opncls.c (bfd_fopen): Always close fd on failure. (bfd_fdopenr): Likewise. gdb/ * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen fails. * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails. * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen fails. * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen fails.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r--gdb/exec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/exec.c b/gdb/exec.c
index 58fb55e2bf7..6ba198615f1 100644
--- a/gdb/exec.c
+++ b/gdb/exec.c
@@ -238,7 +238,6 @@ exec_file_attach (char *filename, int from_tty)
if (!exec_bfd)
{
- close (scratch_chan);
error (_("\"%s\": could not open as an executable file: %s"),
scratch_pathname, bfd_errmsg (bfd_get_error ()));
}