* opncls.c (bfd_openr_iovec): Fix the OPEN parameter macro expansion.

This commit is contained in:
Jan Kratochvil 2007-08-09 14:22:03 +00:00
parent c3ad16c0cd
commit c309eac207
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-08-09 Jan Kratochvil <jan.kratochvil@redhat.com>
* opncls.c (bfd_openr_iovec): Fix the OPEN parameter macro expansion.
2007-08-07 Nick Clifton <nickc@redhat.com>
* po/bfd.pot: Updated template.

View File

@ -545,7 +545,8 @@ bfd_openr_iovec (const char *filename, const char *target,
nbfd->filename = filename;
nbfd->direction = read_direction;
stream = open (nbfd, open_closure);
/* `open (...)' would get expanded by an the open(2) syscall macro. */
stream = (*open) (nbfd, open_closure);
if (stream == NULL)
{
_bfd_delete_bfd (nbfd);