From 11b28165af340d6ce51604b25f0a9813abc9152d Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Mon, 14 Feb 2011 23:54:14 +0000 Subject: [PATCH] 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 --- modules/cache/cache_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index 97e55305f55..7c36617f4ea 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 == '\"') { -- 2.47.2