diff options
author | Tom Tromey <tromey@redhat.com> | 2012-05-29 14:23:40 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-05-29 14:23:40 +0000 |
commit | 6f0c7050fcfb9db9096f2f988f1104eba427bd6c (patch) | |
tree | 676656b0886d01b7ca2a962d9e9bbd344733a28b /gdb/solib.c | |
parent | ec95993ca4e10b9b3d09f29a8bf48c8da7c7116f (diff) | |
download | gdb-6f0c7050fcfb9db9096f2f988f1104eba427bd6c.zip gdb-6f0c7050fcfb9db9096f2f988f1104eba427bd6c.tar.gz gdb-6f0c7050fcfb9db9096f2f988f1104eba427bd6c.tar.bz2 |
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/solib.c')
-rw-r--r-- | gdb/solib.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index 656e8df..90439ba 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -380,8 +380,6 @@ solib_bfd_fopen (char *pathname, int fd) if (abfd) bfd_set_cacheable (abfd, 1); - else if (fd != -1) - close (fd); } if (!abfd) |