diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-04-25 18:22:02 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-04-25 18:22:02 (GMT) |
commit | c01cd3cb3784cecf54727bb037defe0b4f671c78 (patch) | |
tree | 8f22508c9e3263d2b0704230415191781d83243c | |
parent | e7652c0421672a7b13f4b659a48db7e96b334d17 (diff) |
Applied the libssl official example completely to prevent a crash in some cases.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/analysis/db/keymgn.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +16-04-25 Cyrille Bagard <nocbos@gmail.com> + + * src/analysis/db/keymgn.c: + Apply the libssl official example completely to prevent a crash in some cases. + 16-04-24 Cyrille Bagard <nocbos@gmail.com> * src/gtkext/gtkdockable.c: diff --git a/src/analysis/db/keymgn.c b/src/analysis/db/keymgn.c index bce2ce8..42056f0 100644 --- a/src/analysis/db/keymgn.c +++ b/src/analysis/db/keymgn.c @@ -129,6 +129,8 @@ static bool generate_user_rsa_keys(const char *priv, const char *pub) ret = EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, RSA_USED_SIZE * 8); if (ret != 1) goto euhrk_exit; + pair = NULL; + ret = EVP_PKEY_keygen(ctx, &pair); if (ret != 1) goto euhrk_exit; |