projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
815c416
)
omfs: fix memory leak
author
Davidlohr Bueso
<dave.bueso@gmail.com>
Tue, 6 Jul 2010 04:50:58 +0000
(
00:50
-0400)
committer
Bob Copeland
<me@bobcopeland.com>
Tue, 6 Jul 2010 15:05:31 +0000
(11:05 -0400)
In the error path of omfs_fill_super(), the FS super block info
(sbi) is not being freed. Correct this.
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Signed-off-by: Bob Copeland <me@bobcopeland.com>
fs/omfs/inode.c
patch
|
blob
|
history
diff --git
a/fs/omfs/inode.c
b/fs/omfs/inode.c
index
089839a
..
b5d6380
100644
(file)
--- a/
fs/omfs/inode.c
+++ b/
fs/omfs/inode.c
@@
-529,6
+529,8
@@
out_brelse_bh2:
out_brelse_bh:
brelse(bh);
end:
+ if (ret)
+ kfree(sbi);
return ret;
}