nfc: fix potential NULL pointer deref in nfc_genl_dump_ses_done
commit4cd8371a23upstream. The done() netlink callback nfc_genl_dump_ses_done() should check if received argument is non-NULL, because its allocation could fail earlier in dumpit() (nfc_genl_dump_ses()). Fixes:ac22ac466a("NFC: Add a GET_SE netlink API") Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Link: https://lore.kernel.org/r/20211209081307.57337-1-krzysztof.kozlowski@canonical.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f3d9114ac9
commit
83ea620a1b
+4
-2
@@ -1392,8 +1392,10 @@ static int nfc_genl_dump_ses_done(struct netlink_callback *cb)
|
|||||||
{
|
{
|
||||||
struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
|
struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0];
|
||||||
|
|
||||||
nfc_device_iter_exit(iter);
|
if (iter) {
|
||||||
kfree(iter);
|
nfc_device_iter_exit(iter);
|
||||||
|
kfree(iter);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user