From: Eric Sesterhenn Date: Wed, 22 Mar 2006 23:36:54 +0000 (+0100) Subject: [PATCH] Bogus NULL pointer check in fs/configfs/dir.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cbca692c246874a3cc1b5a9b694add4c39e8bc18;p=linux-beck.git [PATCH] Bogus NULL pointer check in fs/configfs/dir.c We check the "group" pointer after we dereference it. This check is bogus, as it cannot be NULL coming in. Signed-off-by: Joel Becker Signed-off-by: Mark Fasheh --- diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c index 8ed9b06a9828..5638c8f9362f 100644 --- a/fs/configfs/dir.c +++ b/fs/configfs/dir.c @@ -504,7 +504,7 @@ static int populate_groups(struct config_group *group) int ret = 0; int i; - if (group && group->default_groups) { + if (group->default_groups) { /* FYI, we're faking mkdir here * I'm not sure we need this semaphore, as we're called * from our parent's mkdir. That holds our parent's