Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 217c1577 authored by Johannes Berg's avatar Johannes Berg
Browse files

cfg80211: fix potential connection work crash



If wpa_supplicant and iw/iwconfig are used together, very
rarely the system crashes. It seems to be related to the
connection parameters not being set up, but it's not all
clear to me how this happens. In any case, checking that
the conn pointer exists here is probably a good idea.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 3eb92f6a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ void cfg80211_conn_work(struct work_struct *work)
			wdev_unlock(wdev);
			continue;
		}
		if (wdev->sme_state != CFG80211_SME_CONNECTING) {
		if (wdev->sme_state != CFG80211_SME_CONNECTING || !wdev->conn) {
			wdev_unlock(wdev);
			continue;
		}