# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1018 -> 1.1019 # fs/ext3/dir.c 1.3 -> 1.4 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/04/15 tytso@think.thunk.org 1.1019 # dir.c: # Apply memory leak fix to ext3_release_dir # -------------------------------------------- # diff -Nru a/fs/ext3/dir.c b/fs/ext3/dir.c --- a/fs/ext3/dir.c Wed Apr 23 21:37:34 2003 +++ b/fs/ext3/dir.c Wed Apr 23 21:37:34 2003 @@ -501,7 +501,7 @@ static int ext3_release_dir (struct inode * inode, struct file * filp) { - if (is_dx(inode) && filp->private_data) + if (filp->private_data) ext3_htree_free_dir_info(filp->private_data); return 0;