diff options
author | Dave Jones <davej@redhat.com> | 2006-03-27 04:14:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:41 -0500 |
commit | 3370c74b2e147169d5bba6665e03d3281f5795ed (patch) | |
tree | bf9a4b2d733605c539ebfb731bac21034adc53d9 /fs/autofs4 | |
parent | 44d53eb041d901620b1090590a549a705767fd10 (diff) |
[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>
Diffstat (limited to 'fs/autofs4')
-rw-r--r-- | fs/autofs4/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/autofs4/inode.c b/fs/autofs4/inode.c index 943888905493..4eddee4e76fc 100644 --- a/fs/autofs4/inode.c +++ b/fs/autofs4/inode.c | |||
@@ -157,8 +157,7 @@ static void autofs4_put_super(struct super_block *sb) | |||
157 | autofs4_catatonic_mode(sbi); /* Free wait queues, close pipe */ | 157 | autofs4_catatonic_mode(sbi); /* Free wait queues, close pipe */ |
158 | 158 | ||
159 | /* Clean up and release dangling references */ | 159 | /* Clean up and release dangling references */ |
160 | if (sbi) | 160 | autofs4_force_release(sbi); |
161 | autofs4_force_release(sbi); | ||
162 | 161 | ||
163 | kfree(sbi); | 162 | kfree(sbi); |
164 | 163 | ||