From b3799a9f8d5237a724437d8e523101bcf7e4e818 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 16 Oct 2019 18:14:17 -0500 Subject: [PATCH] owe: Fix potential memory leak --- src/owe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/owe.c b/src/owe.c index afdd32ea..4b094834 100644 --- a/src/owe.c +++ b/src/owe.c @@ -159,6 +159,7 @@ static bool owe_compute_keys(struct owe_sm *owe, const void *public_key, if (!l_ecdh_generate_shared_secret(owe->private, other_public, &shared_secret)) { + l_ecc_point_free(other_public); return false; }