diff options
-rw-r--r-- | fs/ext3/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/dir.c b/fs/ext3/dir.c index 373fa90c796a..e2e72c367cf6 100644 --- a/fs/ext3/dir.c +++ b/fs/ext3/dir.c | |||
@@ -297,7 +297,7 @@ static void free_rb_tree_fname(struct rb_root *root) | |||
297 | kfree (old); | 297 | kfree (old); |
298 | } | 298 | } |
299 | if (!parent) | 299 | if (!parent) |
300 | root->rb_node = NULL; | 300 | *root = RB_ROOT; |
301 | else if (parent->rb_left == n) | 301 | else if (parent->rb_left == n) |
302 | parent->rb_left = NULL; | 302 | parent->rb_left = NULL; |
303 | else if (parent->rb_right == n) | 303 | else if (parent->rb_right == n) |