From: Eric Brown Date: Thu, 16 Aug 2018 15:34:39 +0000 (-0700) Subject: Remove redundant ASN1_INTEGER_set call X-Git-Tag: OpenSSL_1_0_2q~33 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e24892ef83da5c363d39b52d0b459a26740b1ade;hp=bc251459adc14a1a56d0cbe2d372f3d6ffd20cf8;p=oweals%2Fopenssl.git Remove redundant ASN1_INTEGER_set call This trivial patch removes a duplicated call to ASN1_INTEGER_set. Fixes Issue #6977 Signed-off-by: Eric Brown Reviewed-by: Richard Levitte Reviewed-by: Andy Polyakov Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/6984) (cherry picked from commit 59701e6363531cddef5b2114c0127b8453deb1f3) --- diff --git a/crypto/pkcs7/pk7_lib.c b/crypto/pkcs7/pk7_lib.c index 0c5fcaa6aa..866a863e54 100644 --- a/crypto/pkcs7/pk7_lib.c +++ b/crypto/pkcs7/pk7_lib.c @@ -185,7 +185,6 @@ int PKCS7_set_type(PKCS7 *p7, int type) if ((p7->d.signed_and_enveloped = PKCS7_SIGN_ENVELOPE_new()) == NULL) goto err; - ASN1_INTEGER_set(p7->d.signed_and_enveloped->version, 1); if (!ASN1_INTEGER_set(p7->d.signed_and_enveloped->version, 1)) goto err; p7->d.signed_and_enveloped->enc_data->content_type