From: Brian Pane Date: Sat, 4 May 2002 06:10:59 +0000 (+0000) Subject: Fix for PR 8462: When tokenizing an unquoted string literal, don't X-Git-Tag: 2.0.37~516 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfd029bf6ff56a2936b34a68d311cb42910bd73c;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index 738b6bf5f46..7d294427376 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 */