From: Alan Cox Date: Mon, 6 Apr 2009 16:33:48 +0000 (+0100) Subject: ucc: Fix leaky error path X-Git-Url: http://pilppa.org/gitweb/?a=commitdiff_plain;h=8d5a05da823ebd83a5147e1bfe19036a57a4d33c;p=linux-2.6-omap-h63xx.git ucc: Fix leaky error path Found by Daniel Marjamäki using cppcheck Signed-off-by: Alan Cox Signed-off-by: Linus Torvalds --- diff --git a/drivers/serial/ucc_uart.c b/drivers/serial/ucc_uart.c index 315a9333ca3..7de66c06b05 100644 --- a/drivers/serial/ucc_uart.c +++ b/drivers/serial/ucc_uart.c @@ -1274,6 +1274,7 @@ static int ucc_uart_probe(struct of_device *ofdev, if (!iprop) { iprop = of_get_property(np, "device-id", NULL); if (!iprop) { + kfree(qe_port); dev_err(&ofdev->dev, "UCC is unspecified in " "device tree\n"); return -EINVAL;