1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Fix targets string size calc in driver.

Fix a uuid free in libdm-iface. [Eric Taylor]
Update version.
This commit is contained in:
Alasdair Kergon 2004-06-20 13:50:42 +00:00
parent 809fae91cf
commit 3360958232
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
Version 1.00.18
Version 1.00.18 - 20 Jun 2004
=============================
Fix a uuid free in libdm-iface.
Fix a targets string size calc in driver.
Add -c to dmsetup for column-based output.
Add target message-passing ioctl.

View File

@ -1121,8 +1121,8 @@ static int _create_and_load_v4(struct dm_task *dmt)
/* Use the original structure last so the info will be correct */
dmt->type = DM_DEVICE_RESUME;
dmt->uuid = NULL;
free(dmt->uuid);
dmt->uuid = NULL;
r = dm_task_run(dmt);