[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <454B9DBA.8030705@gmail.com>
Date: Fri, 03 Nov 2006 14:51:22 -0500
From: Florin Malita <fmalita@...il.com>
To: mhalcrow@...ibm.com, phillip@...lewell.homeip.net
CC: linux-kernel@...r.kernel.org, Andrew Morton <akpm@...l.org>
Subject: [PATCH] ecryptfs: bad allocation result check
The kmalloc() result in* *ecryptfs_crypto_api_algify_cipher_name() is
assigned to an indirectly referenced pointer and not to the pointer
itself, so the current result check is incorrect.
Signed-off-by: Florin Malita <fmalita@...il.com>
---
crypto.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c
index f49f105..136175a 100644
--- a/fs/ecryptfs/crypto.c
+++ b/fs/ecryptfs/crypto.c
@@ -134,7 +134,7 @@ int ecryptfs_crypto_api_algify_cipher_na
algified_name_len = (chaining_modifier_len + cipher_name_len + 3);
(*algified_name) = kmalloc(algified_name_len, GFP_KERNEL);
- if (!(algified_name)) {
+ if (!(*algified_name)) {
rc = -ENOMEM;
goto out;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists