mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Prevent crash if Auto-Type performed on new entry
* Check that entry's group is not nullptr * Fixes #3967
This commit is contained in:
parent
04d6d675a5
commit
3fdafc6d25
1 changed files with 2 additions and 2 deletions
|
@ -588,12 +588,12 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
|
||||||
QList<QString> AutoType::autoTypeSequences(const Entry* entry, const QString& windowTitle)
|
QList<QString> AutoType::autoTypeSequences(const Entry* entry, const QString& windowTitle)
|
||||||
{
|
{
|
||||||
QList<QString> sequenceList;
|
QList<QString> sequenceList;
|
||||||
|
const Group* group = entry->group();
|
||||||
|
|
||||||
if (!entry->autoTypeEnabled()) {
|
if (!group || !entry->autoTypeEnabled()) {
|
||||||
return sequenceList;
|
return sequenceList;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Group* group = entry->group();
|
|
||||||
do {
|
do {
|
||||||
if (group->autoTypeEnabled() == Group::Disable) {
|
if (group->autoTypeEnabled() == Group::Disable) {
|
||||||
return sequenceList;
|
return sequenceList;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue