From: Nick Clifton Date: Thu, 9 Sep 2004 11:52:41 +0000 (+0000) Subject: PR 363 X-Git-Tag: csl-arm-2004-q3~207 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=360589e8923454f27a100e27d1716b6f6af7b062;p=external%2Fbinutils.git PR 363 * ar.c (replace_members): Do not use get_file_size as ar_emul_append correctly handles missing files. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index d80314c..93f96d7 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2004-09-09 Nick Clifton + + PR 363 + * ar.c (replace_members): Do not use get_file_size as + ar_emul_append correctly handles missing files. + 2004-09-07 H.J. Lu * configure: Regenerated with autconfig 2.13. diff --git a/binutils/ar.c b/binutils/ar.c index ec0657d..ab54ace 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -1268,7 +1268,7 @@ static void replace_members (bfd *arch, char **files_to_move, bfd_boolean quick) { bfd_boolean changed = FALSE; - bfd **after_bfd; /* New entries go after this one */ + bfd **after_bfd; /* New entries go after this one. */ bfd *current; bfd **current_ptr; @@ -1325,8 +1325,7 @@ replace_members (bfd *arch, char **files_to_move, bfd_boolean quick) /* Add to the end of the archive. */ after_bfd = get_pos_bfd (&arch->next, pos_end, NULL); - if (get_file_size (* files_to_move) > 0 - && ar_emul_append (after_bfd, *files_to_move, verbose)) + if (ar_emul_append (after_bfd, *files_to_move, verbose)) changed = TRUE; next_file:;