diff options
author | Pan Bian <bianpan2016@163.com> | 2021-01-21 18:37:45 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-02-04 01:22:23 +0300 |
commit | f7f55a40b65bfc2f15bc695ad9f93b996ccc8ea3 (patch) | |
tree | 54442d3f8ead219ec3d567847f5fd390bae0aac4 /net | |
parent | a49daeaa592c0d2cf7b378f6240ac69c7b019e1e (diff) | |
download | linux-f7f55a40b65bfc2f15bc695ad9f93b996ccc8ea3.tar.xz |
NFC: fix possible resource leak
commit d8f923c3ab96dbbb4e3c22d1afc1dc1d3b195cd8 upstream.
Put the device to avoid resource leak on path that the polling flag is
invalid.
Fixes: a831b9132065 ("NFC: Do not return EBUSY when stopping a poll that's already stopped")
Signed-off-by: Pan Bian <bianpan2016@163.com>
Link: https://lore.kernel.org/r/20210121153745.122184-1-bianpan2016@163.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/nfc/netlink.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/nfc/netlink.c b/net/nfc/netlink.c index 2d642baeafbb..18957fbf37ff 100644 --- a/net/nfc/netlink.c +++ b/net/nfc/netlink.c @@ -884,6 +884,7 @@ static int nfc_genl_stop_poll(struct sk_buff *skb, struct genl_info *info) if (!dev->polling) { device_unlock(&dev->dev); + nfc_put_device(dev); return -EINVAL; } |