diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cksum.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/cksum.c b/coreutils/cksum.c index 7a37e6add..53fb87a78 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c | |||
@@ -38,6 +38,7 @@ int cksum_main(int argc UNUSED_PARAM, char **argv) | |||
38 | 38 | ||
39 | #define read_buf bb_common_bufsiz1 | 39 | #define read_buf bb_common_bufsiz1 |
40 | while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) { | 40 | while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) { |
41 | length += bytes_read; | ||
41 | crc = crc32_block_endian1(crc, read_buf, bytes_read, crc32_table); | 42 | crc = crc32_block_endian1(crc, read_buf, bytes_read, crc32_table); |
42 | } | 43 | } |
43 | close(fd); | 44 | close(fd); |