mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Make KeePass2XmlReader::parseGroup() safe against reordered xml elements.
This commit is contained in:
parent
3acb33e05a
commit
5588792344
3 changed files with 28 additions and 4 deletions
|
@ -490,6 +490,12 @@ Group* Group::clone() const
|
|||
return clonedGroup;
|
||||
}
|
||||
|
||||
void Group::copyDataFrom(const Group* other)
|
||||
{
|
||||
m_data = other->m_data;
|
||||
m_lastTopVisibleEntry = other->m_lastTopVisibleEntry;
|
||||
}
|
||||
|
||||
void Group::addEntry(Entry* entry)
|
||||
{
|
||||
Q_ASSERT(entry);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue