3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 18:38:48 +02:00

test-runner: fix exception in Hostapd __del__

If Hostapd did not start there was no CLI instance created and
that member should be be accessed.
This commit is contained in:
James Prestwood 2021-08-17 09:45:01 -07:00 committed by Denis Kenzior
parent f0a890da8a
commit 81cf11b0f5

View File

@ -546,6 +546,9 @@ class Hostapd:
print("Failed to remove %s" % self.global_ctrl_iface) print("Failed to remove %s" % self.global_ctrl_iface)
for hapd in self.instances: for hapd in self.instances:
if not hapd.cli:
continue
hapd.cli._instances[hapd.config] = None hapd.cli._instances[hapd.config] = None
hapd.cli = None hapd.cli = None