mirror of
https://github.com/libvirt/libvirt.git
synced 2025-01-24 07:16:47 -06:00
storage_backend_fs: Allocate entry for host before accessing it
Commit 122fa379de
introduces option to
store more than one host entry in a storage pool source definition. That
commit causes a regression, where a check is added that only one host
entry should be present (that actualy is not present as the source
structure was just allocated and zeroed) instead of allocating memory
for the host entry.
This commit is contained in:
parent
ab9c72ae9e
commit
48b7851998
@ -205,11 +205,11 @@ virStorageBackendFileSystemNetFindPoolSourcesFunc(virStoragePoolObjPtr pool ATTR
|
||||
if (!(src = virStoragePoolSourceListNewSource(&state->list)))
|
||||
goto cleanup;
|
||||
|
||||
if (src->nhost != 1) {
|
||||
virStorageReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
||||
_("Expected exactly 1 host for the storage pool"));
|
||||
if (VIR_ALLOC_N(src->hosts, 1) < 0) {
|
||||
virReportOOMError();
|
||||
goto cleanup;
|
||||
}
|
||||
src->nhost = 1;
|
||||
|
||||
if (!(src->hosts[0].name = strdup(state->host)) ||
|
||||
!(src->dir = strdup(path))) {
|
||||
|
Loading…
Reference in New Issue
Block a user