sm: Fix reporting of bad passphrase error

* sm/minip12.c (p12_parse): Set badpass flag to result in ctx.
--

Fixes-commit: a4e04375e8
GnuPG-bug-id: 5713, 6037
This commit is contained in:
Ingo Klöcker 2022-09-09 18:19:16 +02:00
parent 07b0786939
commit a47b3a4087
No known key found for this signature in database
GPG Key ID: F5A5D1692277A1E9
1 changed files with 4 additions and 1 deletions

View File

@ -1946,7 +1946,10 @@ p12_parse (const unsigned char *buffer, size_t length, const char *pw,
where = "bag.encryptedData";
consumed = 0;
if (parse_bag_encrypted_data (&ctx, p, n, (p - p_start), &consumed))
goto bailout;
{
*r_badpass = ctx.badpass;
goto bailout;
}
if (lenndef)
len += consumed;
}