mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-04 20:15:19 +00:00
virsh: Back out if the argument for vol-create-as is malformed
(cherry picked from commit ee58b581c4
)
Conflicts:
tools/virsh.c
This commit is contained in:
parent
9274256d5b
commit
4b5a793070
@ -11121,18 +11121,24 @@ cmdVolCreateAs(vshControl *ctl, const vshCmd *cmd)
|
||||
|
||||
if (vshCommandOptString(cmd, "capacity", &capacityStr) <= 0)
|
||||
goto cleanup;
|
||||
if (vshVolSize(capacityStr, &capacity) < 0)
|
||||
vshError(ctl, _("Malformed size %s"), capacityStr);
|
||||
|
||||
if ((vshCommandOptString(cmd, "allocation", &allocationStr) > 0) &&
|
||||
(vshVolSize(allocationStr, &allocation) < 0))
|
||||
if (vshVolSize(capacityStr, &capacity) < 0) {
|
||||
vshError(ctl, _("Malformed size %s"), capacityStr);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (vshCommandOptString(cmd, "allocation", &allocationStr) > 0 &&
|
||||
vshVolSize(allocationStr, &allocation) < 0) {
|
||||
vshError(ctl, _("Malformed size %s"), allocationStr);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (vshCommandOptString(cmd, "format", &format) < 0 ||
|
||||
vshCommandOptString(cmd, "backing-vol", &snapshotStrVol) < 0 ||
|
||||
vshCommandOptString(cmd, "backing-vol-format",
|
||||
&snapshotStrFormat) < 0) {
|
||||
vshError(ctl, "%s", _("missing argument"));
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user