fix a miscalculation of command line size for vgcreate

* src/storage_backend_logical.c: fix a miscalculation of command line
  size for vgcreate, patch from Jim Fehlig
Daniel
This commit is contained in:
Daniel Veillard 2008-09-04 13:13:32 +00:00
parent 9567aad381
commit c37031ebf3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Sep 4 15:05:34 CEST 2008 Daniel Veillard <veillard@redhat.com>
* src/storage_backend_logical.c: fix a miscalculation of command line
size for vgcreate, patch from Jim Fehlig
Thu Sep 4 11:43:20 BST 2008 Daniel P. Berrange <berrange@redhat.com>
Augeas config file support

View File

@ -351,7 +351,7 @@ virStorageBackendLogicalBuildPool(virConnectPtr conn,
memset(zeros, 0, sizeof(zeros));
/* XXX multiple pvs */
if (VIR_ALLOC_N(vgargv, 1) < 0) {
if (VIR_ALLOC_N(vgargv, 3 + pool->def->source.ndevice) < 0) {
virStorageReportError(conn, VIR_ERR_NO_MEMORY, "%s", _("command line"));
return -1;
}