From 203ba2742f2750fd27967b902ba403b6331e40a5 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 27 May 2011 15:08:25 -0400 Subject: [PATCH] Fix a couple of signed/unsigned warnings in http.c --- http.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http.c b/http.c index 27ca4292..b97485f6 100644 --- a/http.c +++ b/http.c @@ -881,7 +881,7 @@ evhttp_handle_chunked_read(struct evhttp_request *req, struct evbuffer *buf) } /* ntoread is signed int64, body_size is unsigned size_t, check for under/overflow conditions */ - if (ntoread > EV_SIZE_MAX - req->body_size) { + if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) { return DATA_CORRUPTED; } @@ -907,7 +907,7 @@ evhttp_handle_chunked_read(struct evhttp_request *req, struct evbuffer *buf) } /* don't have enough to complete a chunk; wait for more */ - if (buflen < req->ntoread) + if (req->ntoread > 0 && buflen < (ev_uint64_t)req->ntoread) return (MORE_DATA_EXPECTED); /* Completed chunk */