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

Call dev_iter_destroy() if _process_all_devs() is interrupted by sigint.

This commit is contained in:
Alasdair Kergon 2007-07-10 17:51:26 +00:00
parent d27e123310
commit fb697f281b
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.27 -
================================
Call dev_iter_destroy() if _process_all_devs() is interrupted by sigint.
Add vg_mda_count and pv_mda_count columns to reports.
Fix dumpconfig to use log_print instead of stdout directly.
Remove unused parameter 'fid' from _add_pv_to_vg.

View File

@ -659,7 +659,7 @@ static int _process_all_devs(struct cmd_context *cmd, void *handle,
if (ret > ret_max)
ret_max = ret;
if (sigint_caught())
return ret_max;
break;
}
dev_iter_destroy(iter);