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

Fix lvm shell crash when input is entirely whitespace. (Xinwei Hu)

This commit is contained in:
Alasdair Kergon 2010-07-01 11:04:58 +00:00
parent 22a8592301
commit 89dd7d5275
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.70 -
================================
Fix lvm shell crash when input is entirely whitespace.
Update partial mode warning message.
Preserve memlock balance in clvmd when activation triggers a resume.

View File

@ -217,6 +217,9 @@ int lvm_shell(struct cmd_context *cmd, struct cmdline_context *cmdline)
continue;
}
if (!argc)
continue;
if (!strcmp(argv[0], "lvm")) {
argv++;
argc--;