]> granicus.if.org Git - apache/commitdiff
Fix another signedness bug
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 5 Jan 2005 21:23:29 +0000 (21:23 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 5 Jan 2005 21:23:29 +0000 (21:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@124278 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index 2ef086dcfca79756e32cabe22ea1330032ab6282..7e30d9fe9b1a87888d1f5a011130e416a3d03746 100644 (file)
@@ -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