From: Tom Tromey Date: Fri, 3 Aug 2012 16:33:04 +0000 (+0000) Subject: * dlltool.c (scan_obj_file): Close arfile after calling X-Git-Tag: sid-snapshot-20120901~290 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a442b35f3a2d2c5ad8afe84f577a1f5c5c1aad60;p=external%2Fbinutils.git * dlltool.c (scan_obj_file): Close arfile after calling bfd_openr_next_archived_file. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 7594bcb..9141b86 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2012-08-03 Tom Tromey + + * dlltool.c (scan_obj_file): Close arfile after calling + bfd_openr_next_archived_file. + 2012-08-02 H.J. Lu PR binutils/14420 diff --git a/binutils/dlltool.c b/binutils/dlltool.c index 6ed0f7a..8d458d7 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -1694,10 +1694,12 @@ scan_obj_file (const char *filename) bfd *arfile = bfd_openr_next_archived_file (f, 0); while (arfile) { + bfd *next; if (bfd_check_format (arfile, bfd_object)) scan_open_obj_file (arfile); + next = bfd_openr_next_archived_file (f, arfile); bfd_close (arfile); - arfile = bfd_openr_next_archived_file (f, arfile); + arfile = next; } #ifdef DLLTOOL_MCORE_ELF