mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04: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;
|
TimeInfo timeInfo;
|
||||||
|
|
||||||
quint32 groupId;
|
quint32 groupId = 0;
|
||||||
quint32 groupLevel;
|
quint32 groupLevel = 0;
|
||||||
bool groupIdSet = false;
|
bool groupIdSet = false;
|
||||||
bool groupLevelSet = false;
|
bool groupLevelSet = false;
|
||||||
|
|
||||||
|
@ -741,7 +741,7 @@ void KeePass2XmlReader::parseEntryString(Entry* entry)
|
|||||||
|
|
||||||
QString key;
|
QString key;
|
||||||
QString value;
|
QString value;
|
||||||
bool protect;
|
bool protect = false;
|
||||||
bool keySet = false;
|
bool keySet = false;
|
||||||
bool valueSet = false;
|
bool valueSet = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user