ext4: fix memory leak in ext4_xattr_set_acl()'s error path
authorEugene Shatokhin <eugene.shatokhin@rosalab.ru>
Thu, 8 Nov 2012 20:11:11 +0000 (15:11 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Jan 2013 16:43:55 +0000 (08:43 -0800)
commit9d4cbf806eaefbf4a8a63de492a060e06b07f5a6
treee3028a6dc77440ac2dd7cfd96795557f17acd6f7
parent2c4427689134e7bce111584eef33122a14f77e9f
ext4: fix memory leak in ext4_xattr_set_acl()'s error path

commit 24ec19b0ae83a385ad9c55520716da671274b96c upstream.

In ext4_xattr_set_acl(), if ext4_journal_start() returns an error,
posix_acl_release() will not be called for 'acl' which may result in a
memory leak.

This patch fixes that.

Reviewed-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: Eugene Shatokhin <eugene.shatokhin@rosalab.ru>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/acl.c