From: Graham Leggett Date: Mon, 14 Feb 2011 23:54:14 +0000 (+0000) Subject: Don't skip the first character, as it may be a quote, which is handled X-Git-Tag: 2.3.11~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11b28165af340d6ce51604b25f0a9813abc9152d;p=apache Don't skip the first character, as it may be a quote, which is handled by the walk below. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070699 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index 97e55305f5..7c36617f4e 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -1052,7 +1052,7 @@ static char *cache_strqtok(char *str, const char *sep, char **last) * on the way, ignore all quoted strings, and within * quoted strings, escaped characters. */ - *last = token + 1; + *last = token; while (**last) { if (!quoted) { if (**last == '\"') {