misc: fastrpc: Fix an incomplete memory release in fastrpc_rpmsg_probe()
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Mon, 11 May 2020 16:27:22 +0000 (17:27 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 May 2020 14:21:08 +0000 (16:21 +0200)
commit0978de9fc7335c73934ab8fac189fb4cb3f23191
treedb1ef85f5601fe84c7bf66fe9c8d6e042bb2637c
parent01360857486c0e4435dea3aa2f78b47213b7cf6a
misc: fastrpc: Fix an incomplete memory release in fastrpc_rpmsg_probe()

fastrpc_channel_ctx is not freed if misc_register() fails, this would
lead to a memory leak. Fix this leak by adding kfree in misc_register()
error path.

Fixes: 278d56f970ae ("misc: fastrpc: Reference count channel context")
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20200511162722.2552-1-srinivas.kandagatla@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/fastrpc.c