From: Christophe JAILLET Date: Mon, 11 Jun 2018 17:30:35 +0000 (+0200) Subject: serial: pxa: Fix an error handling path in 'serial_pxa_probe()' X-Git-Tag: v4.18.12~154 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7a887d2a1f91b8a0856735ddc8bf6d38b06e2b5a;p=users%2Fdwmw2%2Flinux.git serial: pxa: Fix an error handling path in 'serial_pxa_probe()' [ Upstream commit 95a0e656580fab3128c7bee5f660c50784f53651 ] If port.line is out of range, we still need to release some resources, or we will leak them. Fixes: afc7851fab83 ("serial: pxa: Fix out-of-bounds access through serial port index") Signed-off-by: Christophe JAILLET Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/pxa.c b/drivers/tty/serial/pxa.c index eda3c7710d6a7..4932b674f7efa 100644 --- a/drivers/tty/serial/pxa.c +++ b/drivers/tty/serial/pxa.c @@ -887,7 +887,8 @@ static int serial_pxa_probe(struct platform_device *dev) goto err_clk; if (sport->port.line >= ARRAY_SIZE(serial_pxa_ports)) { dev_err(&dev->dev, "serial%d out of range\n", sport->port.line); - return -EINVAL; + ret = -EINVAL; + goto err_clk; } snprintf(sport->name, PXA_NAME_LEN - 1, "UART%d", sport->port.line + 1);