Merge branch 'develop' into feature/csv-import-button

This commit is contained in:
TheZ3ro 2017-03-25 21:04:09 +01:00 committed by GitHub
commit 0d60cadffc

View File

@ -1037,6 +1037,9 @@ bool KeePass2XmlReader::readBool()
else if (str.compare("False", Qt::CaseInsensitive) == 0) {
return false;
}
else if (str.length() == 0) {
return false;
}
else {
raiseError("Invalid bool value");
return false;