From: Bodo Möller Date: Wed, 17 Apr 2002 11:35:52 +0000 (+0000) Subject: 'version' is not optional in the encoding X-Git-Tag: OpenSSL_0_9_6d~20^2~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dde3e83129ecc3ca06a5c4d1698334c26ec4bd9e;p=oweals%2Fopenssl.git 'version' is not optional in the encoding Submitted by: Nils Larsch --- diff --git a/crypto/ecdsa/ecs_asn1.c b/crypto/ecdsa/ecs_asn1.c index 0b2baf7219..07899150be 100644 --- a/crypto/ecdsa/ecs_asn1.c +++ b/crypto/ecdsa/ecs_asn1.c @@ -261,14 +261,9 @@ X9_62_EC_PARAMETERS *ECDSA_get_X9_62_EC_PARAMETERS(const ECDSA *ecdsa, X9_62_EC_ } else ret = param; - if (ecdsa->version == 1) - ret->version = NULL; - else - { - if (ret->version == NULL && (ret->version = ASN1_INTEGER_new()) == NULL) - OPENSSL_ECDSA_ABORT(ERR_R_MALLOC_FAILURE) - if (!ASN1_INTEGER_set(ret->version, (long)ecdsa->version)) goto err; - } + if (ret->version == NULL && (ret->version = ASN1_INTEGER_new()) == NULL) + OPENSSL_ECDSA_ABORT(ERR_R_MALLOC_FAILURE) + if (!ASN1_INTEGER_set(ret->version, (long)ecdsa->version)) goto err; if ((ret->fieldID = ECDSA_get_X9_62_FIELDID(ecdsa, ret->fieldID)) == NULL) OPENSSL_ECDSA_ABORT(ECDSA_R_ECDSA_GET_X9_62_FIELDID_FAILURE) if ((ret->curve = ECDSA_get_X9_62_CURVE(ecdsa, ret->curve)) == NULL)