diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-29 14:59:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-29 14:59:06 +0000 |
commit | 2b03e5ef31c27b775739f4db7179d40de26f15c4 (patch) | |
tree | 973177132fb9d15e2b4b8b7deeb74914b3cb8c1e /coreutils | |
parent | 6b74b0241cd22d4bdef1ef1860c19565fdbc4e9c (diff) | |
download | busybox-2b03e5ef31c27b775739f4db7179d40de26f15c4.tar.gz |
dd: fix newly introduced bug (introduced by me)
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 7247f55e0..b7979d62f 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -268,7 +268,7 @@ int dd_main(int argc, char **argv) goto die_outfile; } - while ((flags & FLAG_COUNT) && (G.in_full + G.in_part != count)) { + while (!(flags & FLAG_COUNT) || (G.in_full + G.in_part != count)) { if (flags & FLAG_NOERROR) /* Pre-zero the buffer if conv=noerror */ memset(ibuf, 0, ibs); n = safe_read(ifd, ibuf, ibs); |