[PATCH] Remove redundant check from autofs4_put_super

We have to have a valid sbi here, or we'd have oopsed already.  (There's a
dereference of sbi->catatonic a few lines above)

Coverity #740

Signed-off-by: Dave Jones <davej@redhat.com>
Cc: Ian Kent <raven@themaw.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Dave Jones 2006-03-27 01:14:57 -08:00 коммит произвёл Linus Torvalds
Родитель 44d53eb041
Коммит 3370c74b2e
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -157,8 +157,7 @@ static void autofs4_put_super(struct super_block *sb)
autofs4_catatonic_mode(sbi); /* Free wait queues, close pipe */
/* Clean up and release dangling references */
if (sbi)
autofs4_force_release(sbi);
autofs4_force_release(sbi);
kfree(sbi);