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