summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.18.3/busybox-1.18.3-cksum.patch
blob: 97b05a080a6657274511fe64bbc9e6bb4d65354c (plain)
1
2
3
4
5
6
7
8
9
10
--- busybox-1.18.3/coreutils/cksum.c
+++ busybox-1.18.3-cksum/coreutils/cksum.c
@@ -38,6 +38,7 @@ int cksum_main(int argc UNUSED_PARAM, ch
 
 #define read_buf bb_common_bufsiz1
 		while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) {
+			length += bytes_read;
 			crc = crc32_block_endian1(crc, read_buf, bytes_read, crc32_table);
 		}
 		close(fd);