Skip to content

Commit

Permalink
sh: Fix access to released memory in clk_debugfs_register_one()
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Skuczynski <mareksk7@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Marek Skuczynski authored and Paul Mundt committed Feb 2, 2010
1 parent 00b3e0a commit bc10e87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/sh/kernel/cpu/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ static struct dentry *clk_debugfs_root;
static int clk_debugfs_register_one(struct clk *c)
{
int err;
struct dentry *d, *child;
struct dentry *d, *child, *child_tmp;
struct clk *pa = c->parent;
char s[255];
char *p = s;
Expand Down Expand Up @@ -630,7 +630,7 @@ static int clk_debugfs_register_one(struct clk *c)

err_out:
d = c->dentry;
list_for_each_entry(child, &d->d_subdirs, d_u.d_child)
list_for_each_entry_safe(child, child_tmp, &d->d_subdirs, d_u.d_child)
debugfs_remove(child);
debugfs_remove(c->dentry);
return err;
Expand Down

0 comments on commit bc10e87

Please sign in to comment.