Commit e947005b authored by Bill Stoddard's avatar Bill Stoddard
Browse files

Fix using uninitialized variable.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90550 13f79535-47bb-0310-9956-ffa450edef68
parent 77848c0b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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, ',');