mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 22:50:08 +01:00
manager: ensure proper disposal of unrealized devices
When remove_device() is called on an already unrealized device, we should release it from master if necessary and clear its IP configurations to avoid leaks. https://bugzilla.redhat.com/show_bug.cgi?id=1433303
This commit is contained in:
parent
714504faf2
commit
2e0c3d1dac
1 changed files with 5 additions and 0 deletions
|
|
@ -1070,7 +1070,12 @@ remove_device (NMManager *self,
|
|||
|
||||
g_signal_emit (self, signals[DEVICE_REMOVED], 0, device);
|
||||
_notify (self, PROP_DEVICES);
|
||||
} else {
|
||||
/* unrealize() does not release a slave device from master and
|
||||
* clear IP configurations, do it here */
|
||||
nm_device_removed (device, TRUE);
|
||||
}
|
||||
|
||||
g_signal_emit (self, signals[INTERNAL_DEVICE_REMOVED], 0, device);
|
||||
_notify (self, PROP_ALL_DEVICES);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue