mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
src/openvz: Utilize more of VIR_(APPEND|INSERT|DELETE)_ELEMENT
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
6c1bde6a94
commit
d9e4d5cb7c
@ -232,10 +232,8 @@ openvzReadNetworkConf(virDomainDefPtr def,
|
|||||||
if (VIR_STRDUP(net->data.ethernet.ipaddr, token) < 0)
|
if (VIR_STRDUP(net->data.ethernet.ipaddr, token) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
if (VIR_REALLOC_N(def->nets, def->nnets + 1) < 0)
|
if (VIR_APPEND_ELEMENT_COPY(def->nets, def->nnets, net) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
def->nets[def->nnets++] = net;
|
|
||||||
net = NULL;
|
|
||||||
|
|
||||||
token = strtok_r(NULL, " ", &saveptr);
|
token = strtok_r(NULL, " ", &saveptr);
|
||||||
}
|
}
|
||||||
@ -326,10 +324,8 @@ openvzReadNetworkConf(virDomainDefPtr def,
|
|||||||
p = ++next;
|
p = ++next;
|
||||||
} while (p < token + strlen(token));
|
} while (p < token + strlen(token));
|
||||||
|
|
||||||
if (VIR_REALLOC_N(def->nets, def->nnets + 1) < 0)
|
if (VIR_APPEND_ELEMENT_COPY(def->nets, def->nnets, net) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
def->nets[def->nnets++] = net;
|
|
||||||
net = NULL;
|
|
||||||
|
|
||||||
token = strtok_r(NULL, ";", &saveptr);
|
token = strtok_r(NULL, ";", &saveptr);
|
||||||
}
|
}
|
||||||
@ -450,10 +446,8 @@ openvzReadFSConf(virDomainDefPtr def,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (VIR_REALLOC_N(def->fss, def->nfss + 1) < 0)
|
if (VIR_APPEND_ELEMENT(def->fss, def->nfss, fs) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
def->fss[def->nfss++] = fs;
|
|
||||||
fs = NULL;
|
|
||||||
|
|
||||||
VIR_FREE(temp);
|
VIR_FREE(temp);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user