From e67f03db5baec45164b177cc6396b367fa6b15ff Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Wed, 12 Jul 2000 18:29:55 +0000 Subject: [PATCH] * libbfd.c (bfd_seek): fix 'seek beyond EOF' error when writing out a structure that is BFD_IN_MEMORY. --- bfd/ChangeLog | 5 +++++ bfd/libbfd.c | 30 +++++++++++++++++++++++++----- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ec8caa5..073556f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2000-07-12 Charles Wilson + + * libbfd.c (bfd_seek): fix 'seek beyond EOF' error when writing + out a structure that is BFD_IN_MEMORY. + 2000-07-11 Alan Modra * elf64-hppa.c (get_dyn_name): Pass in section pointer instead of diff --git a/bfd/libbfd.c b/bfd/libbfd.c index 1bc0f33..2e9c6c2 100644 --- a/bfd/libbfd.c +++ b/bfd/libbfd.c @@ -691,11 +691,31 @@ bfd_seek (abfd, position, direction) if ((bfd_size_type) abfd->where > bim->size) { - abfd->where = bim->size; - bfd_set_error (bfd_error_file_truncated); - return -1; - } - + if ((abfd->direction == write_direction) || + (abfd->direction == both_direction)) + { + long newsize, oldsize = (bim->size + 127) & ~127; + bim->size = abfd->where; + /* Round up to cut down on memory fragmentation */ + newsize = (bim->size + 127) & ~127; + if (newsize > oldsize) + { + bim->buffer = bfd_realloc (bim->buffer, newsize); + if (bim->buffer == 0) + { + bim->size = 0; + bfd_set_error (bfd_error_no_memory); + return -1; + } + } + } + else + { + abfd->where = bim->size; + bfd_set_error (bfd_error_file_truncated); + return -1; + } + } return 0; } -- 2.7.4