diff options
author | WANG Cong <wangcong@zeuux.org> | 2008-12-30 19:10:35 +0300 |
---|---|---|
committer | Alexey Dobriyan <adobriyan@gmail.com> | 2009-01-05 12:27:45 +0300 |
commit | 230e40fbda242544389a5428a2efac568178ddfe (patch) | |
tree | 596bf1b66ba0c0478290d1186597f58572ec82aa /fs/proc | |
parent | dfe6b7d9406c631d697f8bbe1eae5569b808154f (diff) |
proc: remove write-only variable in proc_pident_lookup()
Signed-off-by: WANG Cong <wangcong@zeuux.org>
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index a9ccc125273..0bc9ca03b91 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -2001,13 +2001,11 @@ static struct dentry *proc_pident_lookup(struct inode *dir, const struct pid_entry *ents, unsigned int nents) { - struct inode *inode; struct dentry *error; struct task_struct *task = get_proc_task(dir); const struct pid_entry *p, *last; error = ERR_PTR(-ENOENT); - inode = NULL; if (!task) goto out_no_task; |