summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2015-09-13 14:18:28 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2015-09-13 14:18:28 +0000
commit8c35688919ebefc840ae6141c15888c6c492aa0a (patch)
tree5263414bb106ca46bc42a1b43cc26ef8b36fdc0e /regress/lib
parente96cd6fcfea1ab54f4d38dbfa3da765fcf48c254 (diff)
Remove explicit NULL checks before *_free() calls and tidy some code.
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libcrypto/ecdh/ecdhtest.c50
1 files changed, 22 insertions, 28 deletions
diff --git a/regress/lib/libcrypto/ecdh/ecdhtest.c b/regress/lib/libcrypto/ecdh/ecdhtest.c
index 100381570c3..b46a3d57980 100644
--- a/regress/lib/libcrypto/ecdh/ecdhtest.c
+++ b/regress/lib/libcrypto/ecdh/ecdhtest.c
@@ -221,18 +221,13 @@ err:
free(abuf);
free(bbuf);
- if (x_a)
- BN_free(x_a);
- if (y_a)
- BN_free(y_a);
- if (x_b)
- BN_free(x_b);
- if (y_b)
- BN_free(y_b);
- if (b)
- EC_KEY_free(b);
- if (a)
- EC_KEY_free(a);
+ BN_free(x_a);
+ BN_free(y_a);
+ BN_free(x_b);
+ BN_free(y_b);
+ EC_KEY_free(b);
+ EC_KEY_free(a);
+
return (ret);
}
@@ -310,11 +305,12 @@ static const unsigned char bp512_Z[] = {
static EC_KEY *
mk_eckey(int nid, const unsigned char *p, size_t plen)
{
- int ok = 0;
EC_KEY *k = NULL;
BIGNUM *priv = NULL;
EC_POINT *pub = NULL;
const EC_GROUP *grp;
+ int ok = 0;
+
k = EC_KEY_new_by_curve_name(nid);
if (!k)
goto err;
@@ -333,15 +329,13 @@ mk_eckey(int nid, const unsigned char *p, size_t plen)
goto err;
ok = 1;
err:
- if (priv)
- BN_clear_free(priv);
- if (pub)
- EC_POINT_free(pub);
- if (ok)
- return k;
- else if (k)
+ BN_clear_free(priv);
+ EC_POINT_free(pub);
+ if (!ok) {
EC_KEY_free(k);
- return NULL;
+ k = NULL;
+ }
+ return (k);
}
/* Known answer test: compute shared secret and check it matches
@@ -380,18 +374,19 @@ ecdh_kat(BIO *out, const char *cname, int nid,
if (memcmp(Ztmp, Z, Zlen))
goto err;
rv = 1;
+
err:
- if (key1)
- EC_KEY_free(key1);
- if (key2)
- EC_KEY_free(key2);
- free(Ztmp);
if (rv)
BIO_puts(out, " ok\n");
else {
fprintf(stderr, "Error in ECDH routines\n");
ERR_print_errors_fp(stderr);
}
+
+ EC_KEY_free(key1);
+ EC_KEY_free(key2);
+ free(Ztmp);
+
return rv;
}
@@ -473,8 +468,7 @@ main(int argc, char *argv[])
err:
ERR_print_errors_fp(stderr);
- if (ctx)
- BN_CTX_free(ctx);
+ BN_CTX_free(ctx);
BIO_free(out);
CRYPTO_cleanup_all_ex_data();
ERR_remove_thread_state(NULL);