mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
agent: Fix error handling of READKEY.
* agent/command.c (cmd_readkey): Jump to leave on reading error. -- Fixes-commit: d7a3c455c5e29b19b66772f86dda925064e34896
This commit is contained in:
parent
53c6b1e858
commit
68d9bc9c35
@ -1458,7 +1458,9 @@ cmd_readkey (assuan_context_t ctx, char *line)
|
||||
goto leave;
|
||||
|
||||
rc = agent_public_key_from_file (ctrl, grip, &s_pkey);
|
||||
if (!rc)
|
||||
if (rc)
|
||||
goto leave;
|
||||
else
|
||||
{
|
||||
if (opt_format_ssh)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user