mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-13 16:30:29 -05:00
Initialize variables to silence compiler warnings.
This commit is contained in:
parent
a505d85792
commit
db6ac26794
@ -391,8 +391,8 @@ Group* KeePass1Reader::readGroup(QIODevice* cipherStream)
|
||||
|
||||
TimeInfo timeInfo;
|
||||
|
||||
quint32 groupId;
|
||||
quint32 groupLevel;
|
||||
quint32 groupId = 0;
|
||||
quint32 groupLevel = 0;
|
||||
bool groupIdSet = false;
|
||||
bool groupLevelSet = false;
|
||||
|
||||
|
@ -741,7 +741,7 @@ void KeePass2XmlReader::parseEntryString(Entry* entry)
|
||||
|
||||
QString key;
|
||||
QString value;
|
||||
bool protect;
|
||||
bool protect = false;
|
||||
bool keySet = false;
|
||||
bool valueSet = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user