You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2013/04/15 16:17:39 UTC

svn commit: r1468089 - /httpd/httpd/trunk/server/util.c

Author: jailletc36
Date: Mon Apr 15 14:17:39 2013
New Revision: 1468089

URL: http://svn.apache.org/r1468089
Log:
Turn a int into a apr_size_t for a variabe used to compute a string length

Modified:
    httpd/httpd/trunk/server/util.c

Modified: httpd/httpd/trunk/server/util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util.c?rev=1468089&r1=1468088&r2=1468089&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util.c (original)
+++ httpd/httpd/trunk/server/util.c Mon Apr 15 14:17:39 2013
@@ -1850,7 +1850,7 @@ AP_DECLARE(char *) ap_escape_logitem(apr
     char *ret;
     unsigned char *d;
     const unsigned char *s;
-    int length = 0;
+    apr_size_t length = 0;
 
     if (!str) {
         return NULL;