diff options
| author | Johan Hovold <johan@kernel.org> | 2021-12-22 11:48:43 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-01-27 08:47:32 +0100 |
| commit | 419f00cb9e8caafaefd261c90043dc3af7cd822f (patch) | |
| tree | 8bc2963e67f30cfddc900fc9bf243e5e9980665b /drivers/net | |
| parent | 05bcdfb126720a81247d2d8d364a996b8eb18f24 (diff) | |
| download | linux-419f00cb9e8caafaefd261c90043dc3af7cd822f.tar.gz linux-419f00cb9e8caafaefd261c90043dc3af7cd822f.tar.bz2 linux-419f00cb9e8caafaefd261c90043dc3af7cd822f.zip | |
can: softing_cs: softingcs_probe(): fix memleak on registration failure
commit ced4913efb0acc844ed65cc01d091a85d83a2082 upstream.
In case device registration fails during probe, the driver state and
the embedded platform device structure needs to be freed using
platform_device_put() to properly free all resources (e.g. the device
name).
Fixes: 0a0b7a5f7a04 ("can: add driver for Softing card")
Link: https://lore.kernel.org/all/20211222104843.6105-1-johan@kernel.org
Cc: stable@vger.kernel.org # 2.6.38
Signed-off-by: Johan Hovold <johan@kernel.org>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net')
| -rw-r--r-- | drivers/net/can/softing/softing_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/can/softing/softing_cs.c b/drivers/net/can/softing/softing_cs.c index cdc0c7433a4b..9fbed88d6c82 100644 --- a/drivers/net/can/softing/softing_cs.c +++ b/drivers/net/can/softing/softing_cs.c @@ -304,7 +304,7 @@ static int softingcs_probe(struct pcmcia_device *pcmcia) return 0; platform_failed: - kfree(dev); + platform_device_put(pdev); mem_failed: pcmcia_bad: pcmcia_failed: |
