From a9556761418c432844d95e3988b41f19b7c7b56a Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 23 Jul 2020 16:30:38 +0200 Subject: ASN1: Fix d2i_KeyParams() to advance |pp| like all other d2i functions do Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/12587) --- crypto/asn1/d2i_param.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crypto/asn1') diff --git a/crypto/asn1/d2i_param.c b/crypto/asn1/d2i_param.c index c82b4a8fa8..bd6ef1ce51 100644 --- a/crypto/asn1/d2i_param.c +++ b/crypto/asn1/d2i_param.c @@ -18,7 +18,6 @@ EVP_PKEY *d2i_KeyParams(int type, EVP_PKEY **a, const unsigned char **pp, long length) { EVP_PKEY *ret = NULL; - const unsigned char *p = *pp; if ((a == NULL) || (*a == NULL)) { if ((ret = EVP_PKEY_new()) == NULL) @@ -34,7 +33,7 @@ EVP_PKEY *d2i_KeyParams(int type, EVP_PKEY **a, const unsigned char **pp, goto err; } - if (!ret->ameth->param_decode(ret, &p, length)) + if (!ret->ameth->param_decode(ret, pp, length)) goto err; if (a != NULL) -- cgit v1.2.3