]> git.baikalelectronics.ru Git - kernel.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>
Wed, 22 Jun 2022 12:22:03 +0000 (14:22 +0200)
commit3e8dca54be9f76137b1f42d21fd65c17acd82fd7
tree84403ab9362867cff6ed1d710b2f245cdf8ea047
parent6a25fd46e9bcd80f2b3c9aa844df2d46120da7b0
usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe

commit 2cf64a00d7809ea828cd7ae264aa4a0cd9257485 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: a6848bdc470f ("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