mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-09 21:28:51 +01:00
agent: Fix error handling of READKEY.
* agent/command.c (cmd_readkey): Jump to leave on reading error.
--
Fixes-commit: d7a3c455c5
This commit is contained in:
parent
548fd7bca7
commit
b261478c06
@ -1418,7 +1418,9 @@ cmd_readkey (assuan_context_t ctx, char *line)
|
|||||||
goto leave;
|
goto leave;
|
||||||
|
|
||||||
rc = agent_public_key_from_file (ctrl, grip, &s_pkey);
|
rc = agent_public_key_from_file (ctrl, grip, &s_pkey);
|
||||||
if (!rc)
|
if (rc)
|
||||||
|
goto leave;
|
||||||
|
else
|
||||||
{
|
{
|
||||||
if (opt_format_ssh)
|
if (opt_format_ssh)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user