From: Christophe Jaillet Date: Mon, 15 Apr 2013 14:17:39 +0000 (+0000) Subject: Turn a int into a apr_size_t for a variabe used to compute a string length X-Git-Tag: 2.5.0-alpha~5579 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ffceed48efe8ca62d7c880388cee62872c69079;p=apache Turn a int into a apr_size_t for a variabe used to compute a string length git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1468089 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index cfac4d2620..676759fe48 100644 --- a/server/util.c +++ b/server/util.c @@ -1850,7 +1850,7 @@ AP_DECLARE(char *) ap_escape_logitem(apr_pool_t *p, const char *str) char *ret; unsigned char *d; const unsigned char *s; - int length = 0; + apr_size_t length = 0; if (!str) { return NULL;