diff options
author | Daniel Mack <daniel@caiaq.de> | 2009-06-04 17:44:12 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-06-09 21:11:53 (GMT) |
commit | 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7 (patch) | |
tree | 5b7c245e1a9b4cff0b817c1d8e05905ac3ede861 /fs | |
parent | de7cf709ebd3c01fbd094e8853dabb410c0370a1 (diff) | |
download | u-boot-165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7.tar.xz |
ubifs: fix small error path mismatch
In do_readpage(), don't free 'dn' if its allocation failed.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ubifs/ubifs.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c index 91fc574..8ede188 100644 --- a/fs/ubifs/ubifs.c +++ b/fs/ubifs/ubifs.c @@ -554,10 +554,8 @@ static int do_readpage(struct ubifs_info *c, struct inode *inode, struct page *p } dn = kmalloc(UBIFS_MAX_DATA_NODE_SZ, GFP_NOFS); - if (!dn) { - err = -ENOMEM; - goto error; - } + if (!dn) + return -ENOMEM; i = 0; while (1) { |