From 2014771fde49d6332728e6f4f3088b41cad45387 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Thu, 23 Aug 2001 14:56:42 +0000 Subject: [PATCH] Fix using uninitialized variable. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90550 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/cache_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/experimental/cache_util.c b/modules/experimental/cache_util.c index cc37aa972c..9d57f67a44 100644 --- a/modules/experimental/cache_util.c +++ b/modules/experimental/cache_util.c @@ -181,7 +181,7 @@ int ap_cache_liststr(const char *list, const char *key, char **val) /* return each comma separated token, one at a time */ const char *ap_cache_tokstr(apr_pool_t *p, const char *list, const char **str) { - apr_off_t len, i; + apr_off_t len = 0, i; const char *s; s = ap_strchr_c(list, ','); -- 2.50.1