From: Navid Emamdoost Date: Fri, 4 Oct 2019 19:29:16 +0000 (-0500) Subject: crypto: user - fix memory leak in crypto_report X-Git-Tag: v5.3.16~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ceddd48c8407c4d1c70a815ae229f34c9af44273;p=thirdparty%2Fkernel%2Fstable.git crypto: user - fix memory leak in crypto_report commit ffdde5932042600c6807d46c1550b28b0db6a3bc upstream. In crypto_report, a new skb is created via nlmsg_new(). This skb should be released if crypto_report_alg() fails. Fixes: a38f7907b926 ("crypto: Add userspace configuration API") Cc: Signed-off-by: Navid Emamdoost Signed-off-by: Herbert Xu Signed-off-by: Greg Kroah-Hartman --- diff --git a/crypto/crypto_user_base.c b/crypto/crypto_user_base.c index c65e39005ce2a..a4db71846af5d 100644 --- a/crypto/crypto_user_base.c +++ b/crypto/crypto_user_base.c @@ -214,8 +214,10 @@ static int crypto_report(struct sk_buff *in_skb, struct nlmsghdr *in_nlh, drop_alg: crypto_mod_put(alg); - if (err) + if (err) { + kfree_skb(skb); return err; + } return nlmsg_unicast(crypto_nlsk, skb, NETLINK_CB(in_skb).portid); }