diff options
author | Latchesar Ionkov <lucho@ionkov.net> | 2005-11-28 16:44:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-28 17:42:25 -0500 |
commit | a93a117eaa0bec426d4671a49bfa96a6fdcd2ac9 (patch) | |
tree | 8ad3a616b8d77a5bcae4c670a3b09ae6eb74a11a /fs/9p/vfs_inode.c | |
parent | 8c4b8add83c93306b07d78469fd351dc462e4b66 (diff) |
[PATCH] v9fs: fix memory leak in v9fs dentry code
Assign the appropriate dentry operations to the dentry. Fixes memory leak.
Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
Cc: Eric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/9p/vfs_inode.c')
-rw-r--r-- | fs/9p/vfs_inode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index be7288184fa9..0ea965c3bb7d 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c | |||
@@ -427,6 +427,8 @@ v9fs_create(struct inode *dir, | |||
427 | 427 | ||
428 | v9fs_mistat2inode(fcall->params.rstat.stat, file_inode, sb); | 428 | v9fs_mistat2inode(fcall->params.rstat.stat, file_inode, sb); |
429 | kfree(fcall); | 429 | kfree(fcall); |
430 | fcall = NULL; | ||
431 | file_dentry->d_op = &v9fs_dentry_operations; | ||
430 | d_instantiate(file_dentry, file_inode); | 432 | d_instantiate(file_dentry, file_inode); |
431 | 433 | ||
432 | if (perm & V9FS_DMDIR) { | 434 | if (perm & V9FS_DMDIR) { |