1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-30 17:18:21 +03:00

More memory leak plugging.

This commit is contained in:
Patrick Caulfield 2002-04-15 13:24:14 +00:00
parent 6fa3c2d5ce
commit 70d7918634

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);
}