[git commit master] wget: fix signedness in the compare (paranoia only, G.content_len is never < 0)

Denys Vlasenko vda.linux at googlemail.com
Fri Dec 11 13:12:28 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=d2c879da256bee88f35ddf024d0bd46e3fd480d0
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/wget.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/networking/wget.c b/networking/wget.c
index 64553d4..ad1770b 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -462,7 +462,7 @@ static void NOINLINE retrieve_file_data(FILE *dfp, int output_fd)
 
 			rdsz = sizeof(buf);
 			if (G.got_clen) {
-				if (G.content_len < sizeof(buf)) {
+				if (G.content_len < (off_t)sizeof(buf)) {
 					if ((int)G.content_len <= 0)
 						break;
 					rdsz = (unsigned)G.content_len;
-- 
1.6.3.3



More information about the busybox-cvs mailing list