diff options
| author | Daniel Mack <daniel@caiaq.de> | 2009-06-04 19:44:12 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-06-09 23:11:53 +0200 | 
| commit | 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7 (patch) | |
| tree | 5b7c245e1a9b4cff0b817c1d8e05905ac3ede861 /fs | |
| parent | de7cf709ebd3c01fbd094e8853dabb410c0370a1 (diff) | |
| download | olio-uboot-2014.01-165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7.tar.xz olio-uboot-2014.01-165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7.zip | |
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 91fc574a9..8ede188e1 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) { |