Commit f400d6dc authored by Yann Ylavic's avatar Yann Ylavic
Browse files

mod_cache: follow up to r1856493: always terminate cache_strqtok() returns.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1856500 13f79535-47bb-0310-9956-ffa450edef68
parent ef3c92c9
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -931,6 +931,7 @@ CACHE_DECLARE(char *)ap_cache_generate_name(apr_pool_t *p, int dirlevels,
apr_status_t cache_strqtok(char *str, char **token, char **arg, char **last)
{
#define CACHE_TOKEN_SEPS "\t ,"
    apr_status_t rv = APR_SUCCESS;
    int quoted = 0;
    char *wpos;

@@ -988,7 +989,6 @@ apr_status_t cache_strqtok(char *str, char **token, char **arg, char **last)
        }
        *wpos++ = *str;
    }
    *wpos = '\0';

    /* anything after should be trailing OWS or comma */
    for (; *str; ++str) {
@@ -997,12 +997,14 @@ apr_status_t cache_strqtok(char *str, char **token, char **arg, char **last)
            break;
        }
        if (*str != '\t' && *str != ' ') {
            return APR_EINVAL;
            rv = APR_EINVAL;
            break;
        }
    }
    *last = str;

    return APR_SUCCESS;
    *wpos = '\0';
    *last = str;
    return rv;
}

/**