From 38810d4197f3f8e9b0946cdbbe158cacee5de101 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 5 Jan 2005 21:23:29 +0000 Subject: [PATCH] Fix another signedness bug git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@124278 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_rewrite.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.50.1