mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Release database before exiting CLI interactive mode
This commit is contained in:
parent
56a5a129c6
commit
dc42d5dda6
1 changed files with 2 additions and 0 deletions
|
@ -149,6 +149,7 @@ void enterInteractiveMode(const QStringList& arguments)
|
||||||
prompt += "> ";
|
prompt += "> ";
|
||||||
command = reader->readLine(prompt);
|
command = reader->readLine(prompt);
|
||||||
if (reader->isFinished()) {
|
if (reader->isFinished()) {
|
||||||
|
currentDatabase->releaseData();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -162,6 +163,7 @@ void enterInteractiveMode(const QStringList& arguments)
|
||||||
errorTextStream << QObject::tr("Unknown command %1").arg(args[0]) << "\n";
|
errorTextStream << QObject::tr("Unknown command %1").arg(args[0]) << "\n";
|
||||||
continue;
|
continue;
|
||||||
} else if (cmd->name == "quit" || cmd->name == "exit") {
|
} else if (cmd->name == "quit" || cmd->name == "exit") {
|
||||||
|
currentDatabase->releaseData();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue