rpmsg: Fix possible refcount leak in rpmsg_register_device_override()
authorHangyu Hua <hbh25y@gmail.com>
Fri, 24 Jun 2022 02:41:20 +0000 (10:41 +0800)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Fri, 24 Jun 2022 17:34:00 +0000 (11:34 -0600)
commitd7bd416d35121c95fe47330e09a5c04adbc5f928
tree7b4305b97734e0b276f899e9ec5ac74581d6b9b8
parent416b992b05c94cd691a1909f10e333f02cb81e56
rpmsg: Fix possible refcount leak in rpmsg_register_device_override()

rpmsg_register_device_override need to call put_device to free vch when
driver_set_override fails.

Fix this by adding a put_device() to the error path.

Fixes: bb17d110cbf2 ("rpmsg: Fix calling device_lock() on non-initialized device")
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
Link: https://lore.kernel.org/r/20220624024120.11576-1-hbh25y@gmail.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/rpmsg/rpmsg_core.c