mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix infinite loop that can be triggered by some invalid html
This commit is contained in:
parent
9b751fe6d8
commit
8985c2d1d4
1 changed files with 5 additions and 1 deletions
|
@ -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 a new issue