dm exception store: free tmp_store on persistent flag error

Error handling code following a kmalloc should free the allocated data.

Cc: stable@kernel.org
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
This commit is contained in:
Julia Lawall 2009-12-10 23:51:52 +00:00 коммит произвёл Alasdair G Kergon
Родитель 6076905b5e
Коммит 613978f871
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -216,7 +216,8 @@ int dm_exception_store_create(struct dm_target *ti, int argc, char **argv,
type = get_type("N");
else {
ti->error = "Persistent flag is not P or N";
return -EINVAL;
r = -EINVAL;
goto bad_type;
}
if (!type) {