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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e6505841fc0457eb25a77de20c036457929f011;p=thirdparty%2Fapache%2Fhttpd.git 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 cfac4d26200..676759fe487 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;