From: Dan Carpenter Date: Sat, 10 Dec 2016 14:56:01 +0000 (-0500) Subject: ext4: return -ENOMEM instead of success X-Git-Tag: v4.1.38~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14927595fec915a90a050a1f43c20ca6a4115785;p=platform%2Fkernel%2Flinux-exynos.git ext4: return -ENOMEM instead of success [ Upstream commit 578620f451f836389424833f1454eeeb2ffc9e9f ] We should set the error code if kzalloc() fails. Fixes: 67cf5b09a46f ("ext4: add the basic function for inline data support") Signed-off-by: Dan Carpenter Signed-off-by: Theodore Ts'o Cc: stable@vger.kernel.org Signed-off-by: Sasha Levin --- diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c index 095c7a258d97..d77d542c2ed5 100644 --- a/fs/ext4/inline.c +++ b/fs/ext4/inline.c @@ -336,8 +336,10 @@ static int ext4_update_inline_data(handle_t *handle, struct inode *inode, len -= EXT4_MIN_INLINE_DATA_SIZE; value = kzalloc(len, GFP_NOFS); - if (!value) + if (!value) { + error = -ENOMEM; goto out; + } error = ext4_xattr_ibody_get(inode, i.name_index, i.name, value, len);