You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2005/01/05 22:23:30 UTC

svn commit: r124278 - /httpd/httpd/trunk/modules/mappers/mod_rewrite.c

Author: wrowe
Date: Wed Jan  5 13:23:29 2005
New Revision: 124278

URL: http://svn.apache.org/viewcvs?view=rev&rev=124278
Log:

  Fix another signedness bug

Modified:
   httpd/httpd/trunk/modules/mappers/mod_rewrite.c

Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/mappers/mod_rewrite.c?view=diff&rev=124278&p1=httpd/httpd/trunk/modules/mappers/mod_rewrite.c&r1=124277&p2=httpd/httpd/trunk/modules/mappers/mod_rewrite.c&r2=124278
==============================================================================
--- httpd/httpd/trunk/modules/mappers/mod_rewrite.c	(original)
+++ httpd/httpd/trunk/modules/mappers/mod_rewrite.c	Wed Jan  5 13:23:29 2005
@@ -1308,7 +1308,8 @@
     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