aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorDmitry Monakhov <dmonakhov@openvz.org>2007-10-19 22:38:38 +0100
committerAlasdair G Kergon <agk@redhat.com>2007-10-20 02:01:01 +0100
commit815f9e32709b014a459919176a4f0feebd42731e (patch)
tree346f54c6313c34d57259bf59109c2a035e999fcb /drivers/md
parentdm crypt: drop device ref in ctr error path (diff)
downloadlinux-dev-815f9e32709b014a459919176a4f0feebd42731e.tar.xz
linux-dev-815f9e32709b014a459919176a4f0feebd42731e.zip
dm crypt: missing kfree in ctr error path
Insert missing kfree() in crypt_iv_essiv_ctr() error path. Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-crypt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c
index ecd9ef0418cd..3fa3b24947da 100644
--- a/drivers/md/dm-crypt.c
+++ b/drivers/md/dm-crypt.c
@@ -175,6 +175,7 @@ static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
if (err) {
ti->error = "Error calculating hash in ESSIV";
+ kfree(salt);
return err;
}