Loading crypto/ec/ec_key.c +6 −7 Original line number Diff line number Diff line Loading @@ -377,9 +377,9 @@ int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, return 0; } ctx = BN_CTX_new(); if (!ctx) goto err; if (ctx == NULL) return 0; BN_CTX_start(ctx); point = EC_POINT_new(key->group); if (!point) Loading Loading @@ -432,9 +432,8 @@ int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, ok = 1; err: if (ctx) BN_CTX_end(ctx); BN_CTX_free(ctx); if (point) EC_POINT_free(point); return ok; Loading Loading
crypto/ec/ec_key.c +6 −7 Original line number Diff line number Diff line Loading @@ -377,9 +377,9 @@ int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, return 0; } ctx = BN_CTX_new(); if (!ctx) goto err; if (ctx == NULL) return 0; BN_CTX_start(ctx); point = EC_POINT_new(key->group); if (!point) Loading Loading @@ -432,9 +432,8 @@ int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, ok = 1; err: if (ctx) BN_CTX_end(ctx); BN_CTX_free(ctx); if (point) EC_POINT_free(point); return ok; Loading