summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-01-21 23:10:29 +0100
committerKurt Roeckx <kurt@roeckx.be>2016-01-24 00:47:41 +0100
commit98637bd30e06529e52b5f83bde32c8bd2d620e06 (patch)
tree6da7e6cb15812fadb4d54d0207150ecec2708b66 /crypto/engine
parent3eb70c5ebae6f2b5fd6034ed5af14910c8479688 (diff)
Fix two possible leaks.
Signed-off-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #580
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_dyn.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/engine/eng_dyn.c b/crypto/engine/eng_dyn.c
index d19cab2ecf..bdd0a1aeb6 100644
--- a/crypto/engine/eng_dyn.c
+++ b/crypto/engine/eng_dyn.c
@@ -231,6 +231,8 @@ static int dynamic_set_data_ctx(ENGINE *e, dynamic_data_ctx **ctx)
* If we lost the race to set the context, c is non-NULL and *ctx is the
* context of the thread that won.
*/
+ if (c)
+ sk_OPENSSL_STRING_free(c->dirs);
OPENSSL_free(c);
return 1;
}