You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2011/02/15 00:54:14 UTC

svn commit: r1070699 - /httpd/httpd/trunk/modules/cache/cache_util.c

Author: minfrin
Date: Mon Feb 14 23:54:14 2011
New Revision: 1070699

URL: http://svn.apache.org/viewvc?rev=1070699&view=rev
Log:
Don't skip the first character, as it may be a quote, which is handled
by the walk below.

Modified:
    httpd/httpd/trunk/modules/cache/cache_util.c

Modified: httpd/httpd/trunk/modules/cache/cache_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/cache_util.c?rev=1070699&r1=1070698&r2=1070699&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/cache_util.c (original)
+++ httpd/httpd/trunk/modules/cache/cache_util.c Mon Feb 14 23:54:14 2011
@@ -1052,7 +1052,7 @@ static char *cache_strqtok(char *str, co
      * on the way, ignore all quoted strings, and within
      * quoted strings, escaped characters.
      */
-    *last = token + 1;
+    *last = token;
     while (**last) {
         if (!quoted) {
             if (**last == '\"') {