mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 19:32:19 +00:00
networkGetDHCPLeases: Use VIR_APPEND_ELEMENT() instead of VIR_INSERT_ELEMENT()
This function is misusing VIR_INSERT_ELEMENT() to behave like VIR_APPEND_ELEMENT(). Use the latter to make it explicit what we are trying to achieve. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
9c65363a40
commit
ee93656c40
@ -4179,7 +4179,7 @@ networkGetDHCPLeases(virNetworkPtr net,
|
|||||||
lease->clientid = g_strdup(virJSONValueObjectGetString(lease_tmp, "client-id"));
|
lease->clientid = g_strdup(virJSONValueObjectGetString(lease_tmp, "client-id"));
|
||||||
lease->hostname = g_strdup(virJSONValueObjectGetString(lease_tmp, "hostname"));
|
lease->hostname = g_strdup(virJSONValueObjectGetString(lease_tmp, "hostname"));
|
||||||
|
|
||||||
if (VIR_INSERT_ELEMENT(leases_ret, nleases, nleases, lease) < 0)
|
if (VIR_APPEND_ELEMENT(leases_ret, nleases, lease) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user