1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

o was freeing memory from the wrong pool

This commit is contained in:
Joe Thornber 2001-10-25 15:24:35 +00:00
parent a4c0d9c2e4
commit d7c5efe663

View File

@ -270,7 +270,7 @@ static struct list_head *_get_pvs(struct io_space *is)
return results;
bad:
pool_free(mem, results);
pool_free(is->mem, results);
pool_destroy(mem);
return NULL;
}