From cfd029bf6ff56a2936b34a68d311cb42910bd73c Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Sat, 4 May 2002 06:10:59 +0000 Subject: [PATCH] Fix for PR 8462: When tokenizing an unquoted string literal, don't consume a ')' that immediately follows it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94929 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_include.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index 738b6bf5f4..7d29442737 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -1896,6 +1896,9 @@ static const char *get_ptoken(request_rec *r, const char *string, } } } + if (tkn_fnd) { + break; + } } /* If qs is still set, we have an unmatched quote */ -- 2.50.1