Fix infinite loop that can be triggered by some invalid html
This commit is contained in:
parent
9b751fe6d8
commit
8985c2d1d4
@ -494,7 +494,11 @@ utils::escapeBlacklistedHtml(const QString &rawStr)
|
|||||||
|
|
||||||
attrStart = consumeSpaces(attrEnd);
|
attrStart = consumeSpaces(attrEnd);
|
||||||
|
|
||||||
if (attrStart < attrsEnd) {
|
if (attrName.isEmpty()) {
|
||||||
|
buffer.append(QUrl::toPercentEncoding(QString(QByteArray(attrStart, 1))));
|
||||||
|
attrStart++;
|
||||||
|
continue;
|
||||||
|
} else if (attrStart < attrsEnd) {
|
||||||
if (*attrStart == '=') {
|
if (*attrStart == '=') {
|
||||||
attrStart = consumeSpaces(attrStart + 1);
|
attrStart = consumeSpaces(attrStart + 1);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user