[PATCH 1/2] uio_pdrv: fix memory leak

From: Uwe Kleine-KÃnig
Date: Fri Jul 11 2008 - 05:10:53 EST


Thanks to Magnus Damm for pointing that out.

Signed-off-by: Uwe Kleine-KÃnig <Uwe.Kleine-Koenig@xxxxxxxx>
Acked-by: Hans J. Koch <hjk@xxxxxxxxxxxxx>
---
drivers/uio/uio_pdrv.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/uio/uio_pdrv.c b/drivers/uio/uio_pdrv.c
index 5d0d2e8..aa3bff8 100644
--- a/drivers/uio/uio_pdrv.c
+++ b/drivers/uio/uio_pdrv.c
@@ -88,6 +88,8 @@ static int uio_pdrv_remove(struct platform_device *pdev)

uio_unregister_device(pdata->uioinfo);

+ kfree(pdata);
+
return 0;
}

--
1.5.6.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/