mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
(gpgsm_decrypt): Return GPG_ERR_NO_DATA if it is not a
encrypted message.
This commit is contained in:
parent
bd2d99c4e7
commit
389fa08de6
2 changed files with 10 additions and 0 deletions
|
@ -333,6 +333,11 @@ gpgsm_decrypt (CTRL ctrl, int in_fd, FILE *out_fp)
|
|||
numbuf, algoid?algoid:"?", NULL);
|
||||
}
|
||||
|
||||
/* If it seems that this is not an ecrypted message we
|
||||
return a more sensible error code. */
|
||||
if (!algoid)
|
||||
rc = gpg_error (GPG_ERR_NO_DATA);
|
||||
|
||||
goto leave;
|
||||
}
|
||||
dfparm.algo = algo;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue