The virStoragePoolDefParseSource method would set def->nhosts
before allocating def->hosts. If the allocation failed due to
OOM, the cleanup code would crash accessing out of bounds.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
if ((n = virXPathNodeSet("./host", ctxt, &nodeset)) < 0)
goto cleanup;
- source->nhost = n;
- if (source->nhost) {
- if (VIR_ALLOC_N(source->hosts, source->nhost) < 0)
+ if (n) {
+ if (VIR_ALLOC_N(source->hosts, n) < 0)
goto cleanup;
+ source->nhost = n;
for (i = 0; i < source->nhost; i++) {
name = virXMLPropString(nodeset[i], "name");