2011-03-13 18:53:40

by Alexander Beregalov

[permalink] [raw]
Subject: [PATCH] staging: altera-stapl: fix memory leaks

Free resources before exit.

Signed-off-by: Alexander Beregalov <[email protected]>
---
drivers/staging/altera-stapl/altera.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/altera-stapl/altera.c b/drivers/staging/altera-stapl/altera.c
index 05aad35..fcc7650 100644
--- a/drivers/staging/altera-stapl/altera.c
+++ b/drivers/staging/altera-stapl/altera.c
@@ -2435,11 +2435,16 @@ int altera_init(struct altera_config *config, const struct firmware *fw)
if (!key)
return -ENOMEM;
value = kzalloc(257 * sizeof(char), GFP_KERNEL);
- if (!value)
+ if (!value) {
+ kfree(key);
return -ENOMEM;
+ }
astate = kzalloc(sizeof(struct altera_state), GFP_KERNEL);
- if (!astate)
+ if (!astate) {
+ kfree(value);
+ kfree(key);
return -ENOMEM;
+ }

astate->config = config;
if (!astate->config->jtag_io) {
--
1.7.4.1