From: William A. Rowe Jr Date: Wed, 5 Jan 2005 21:23:29 +0000 (+0000) Subject: Fix another signedness bug X-Git-Tag: 2.1.3~185 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38810d4197f3f8e9b0946cdbbe158cacee5de101;p=apache Fix another signedness bug git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@124278 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 2ef086dcfc..7e30d9fe9b 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -1308,7 +1308,8 @@ static char *lookup_map_program(request_rec *r, apr_file_t *fpin, apr_size_t i, nbytes, combined_len = 0; apr_status_t rv; const char *eol = APR_EOL_STR; - int eolc = 0, found_nl = 0; + apr_size_t eolc = 0; + int found_nl = 0; result_list *buflist = NULL, *curbuf = NULL; #ifndef NO_WRITEV