mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 19:32:19 +00:00
interface: fail on OOM from virGetInterface()
This commit is contained in:
parent
e3155cac18
commit
ead2df32ba
@ -2,7 +2,7 @@
|
|||||||
* interface_backend_netcf.c: backend driver methods to handle physical
|
* interface_backend_netcf.c: backend driver methods to handle physical
|
||||||
* interface configuration using the netcf library.
|
* interface configuration using the netcf library.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2014 Red Hat, Inc.
|
* Copyright (C) 2006-2015 Red Hat, Inc.
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
@ -629,8 +629,9 @@ netcfConnectListAllInterfaces(virConnectPtr conn,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (ifaces) {
|
if (ifaces) {
|
||||||
iface_obj = virGetInterface(conn, ncf_if_name(iface),
|
if (!(iface_obj = virGetInterface(conn, ncf_if_name(iface),
|
||||||
ncf_if_mac_string(iface));
|
ncf_if_mac_string(iface))))
|
||||||
|
goto cleanup;
|
||||||
tmp_iface_objs[niface_objs++] = iface_obj;
|
tmp_iface_objs[niface_objs++] = iface_obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user