]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe
authorMiaoqian Lin <linmq006@gmail.com>
Fri, 3 Jun 2022 14:02:44 +0000 (18:02 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 25 Jun 2022 09:45:18 +0000 (11:45 +0200)
commitd85e4e6284a91aa2d1ab004e9d84b9c09b4aa203
treec03073a17a856cafd6e0b295fad0de797a7165ad
parent85203393d81b56a4d03a1488ae073c88f5b4dd15
usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe

commit 4757c9ade34178b351580133771f510b5ffcf9c8 upstream.

of_parse_phandle() returns a node pointer with refcount
incremented, we should use of_node_put() on it when not need anymore.
Add missing of_node_put() to avoid refcount leak.
of_node_put() will check NULL pointer.

Fixes: 24a28e428351 ("USB: gadget driver for LPC32xx")
Cc: stable <stable@kernel.org>
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Link: https://lore.kernel.org/r/20220603140246.64529-1-linmq006@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/lpc32xx_udc.c