LCEMP RCE fixes
Based on commit d017bfc30a68888bf5c79b23cf5c4f607cf828bf
This commit is contained in:
@@ -42,10 +42,16 @@ public:
|
||||
}
|
||||
tags.clear();
|
||||
Tag *tag;
|
||||
while ((tag = Tag::readNamedTag(dis))->getId() != Tag::TAG_End)
|
||||
{
|
||||
tags[tag->getName()] = tag;
|
||||
}
|
||||
int tagCount = 0;
|
||||
const int MAX_COMPOUND_TAGS = 10000;
|
||||
while ((tag = Tag::readNamedTag(dis))->getId() != Tag::TAG_End)
|
||||
{
|
||||
tags[tag->getName()] = tag;
|
||||
if (++tagCount >= MAX_COMPOUND_TAGS)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
delete tag;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user