1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-08-13 21:49:29 +03:00

More memory leak plugging.

This commit is contained in:
Patrick Caulfield
2002-04-15 13:24:14 +00:00
parent 324e8389dc
commit 7f9e2c1db8

View File

@ -44,6 +44,8 @@ void dm_task_destroy(struct dm_task *dmt)
for (t = dmt->head; t; t = n) {
n = t->next;
free(t->params);
free(t->type);
free(t);
}