mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-23 04:55:18 +00:00
netdev: accept NULL in virNetDevSetupControl
Commit b9c6b073 dropped the version of virNetDevSetupControl that didn't check for NULL arguments, but we call it like that in virNetDevBridgeDelete.
This commit is contained in:
parent
3a3b8f6956
commit
695593fe00
@ -62,13 +62,15 @@ static int virNetDevSetupControlFull(const char *ifname,
|
||||
{
|
||||
int fd;
|
||||
|
||||
memset(ifr, 0, sizeof(*ifr));
|
||||
if (ifr && ifname) {
|
||||
memset(ifr, 0, sizeof(*ifr));
|
||||
|
||||
if (virStrcpyStatic(ifr->ifr_name, ifname) == NULL) {
|
||||
virReportSystemError(ERANGE,
|
||||
_("Network interface name '%s' is too long"),
|
||||
ifname);
|
||||
return -1;
|
||||
if (virStrcpyStatic(ifr->ifr_name, ifname) == NULL) {
|
||||
virReportSystemError(ERANGE,
|
||||
_("Network interface name '%s' is too long"),
|
||||
ifname);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
if ((fd = socket(domain, type, 0)) < 0) {
|
||||
|
@ -38,7 +38,7 @@ typedef void virIfreq;
|
||||
|
||||
int virNetDevSetupControl(const char *ifname,
|
||||
virIfreq *ifr)
|
||||
ATTRIBUTE_RETURN_CHECK ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
||||
ATTRIBUTE_RETURN_CHECK;
|
||||
|
||||
int virNetDevExists(const char *brname)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
||||
|
Loading…
x
Reference in New Issue
Block a user