aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/copy_file_chunk.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libbb/copy_file_chunk.c b/libbb/copy_file_chunk.c
index e887cbe9f..90b6b8238 100644
--- a/libbb/copy_file_chunk.c
+++ b/libbb/copy_file_chunk.c
@@ -37,8 +37,6 @@ extern int copy_file_chunk(FILE *src_file, FILE *dst_file, off_t chunksize)
37 off_t size, amount_written; 37 off_t size, amount_written;
38 char buffer[BUFSIZ]; /* BUFSIZ is declared in stdio.h */ 38 char buffer[BUFSIZ]; /* BUFSIZ is declared in stdio.h */
39 39
40 clearerr(src_file);
41 clearerr(dst_file);
42 while (chunksize > 0) { 40 while (chunksize > 0) {
43 if (chunksize > BUFSIZ) { 41 if (chunksize > BUFSIZ) {
44 size = BUFSIZ; 42 size = BUFSIZ;