dect
/
linux-2.6
Archived
13
0
Fork 0

fs/sysv: dereferencing ERR_PTR()

I moved the dir_put_page() inside the if condition so we don't dereference
"page", if it's an ERR_PTR().

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Dan Carpenter 2010-04-21 12:30:32 +02:00 committed by Al Viro
parent 265624495f
commit 404e781249
1 changed files with 1 additions and 1 deletions

View File

@ -164,8 +164,8 @@ struct sysv_dir_entry *sysv_find_entry(struct dentry *dentry, struct page **res_
name, de->name))
goto found;
}
dir_put_page(page);
}
dir_put_page(page);
if (++n >= npages)
n = 0;