Bug 1117311 - CSP: Allowing paths that start with '_' (r=sstamm)

This commit is contained in:
Christoph Kerschbaumer 2015-01-04 19:58:38 -08:00
Родитель abf8b746a5
Коммит f576b0324f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -444,7 +444,7 @@ nsCSPParser::path(nsCSPHostSrc* aCspHost)
}
// path can begin with "/" but not "//"
// see http://tools.ietf.org/html/rfc3986#section-3.3
if (!hostChar()) {
if (peek(SLASH)) {
const char16_t* params[] = { mCurToken.get() };
logWarningErrorToConsole(nsIScriptError::warningFlag, "couldntParseInvalidSource",
params, ArrayLength(params));