]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Copy previous BSSID into STA data only after full validation of the request
authorJouni Malinen <j@w1.fi>
Sat, 30 Aug 2008 15:25:44 +0000 (18:25 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 30 Aug 2008 15:25:44 +0000 (18:25 +0300)
hostapd/ieee802_11.c

index 87d74c200420e1c3e53b0f2daa4cb59a0d283e2b..c07449fc7e23dd6b37ce49d899748e36ad9bfee6 100644 (file)
@@ -1013,11 +1013,6 @@ static void handle_assoc(struct hostapd_data *hapd,
                goto fail;
        }
 
-       if (reassoc) {
-               os_memcpy(sta->previous_ap, mgmt->u.reassoc_req.current_ap,
-                         ETH_ALEN);
-       }
-
        sta->capability = capab_info;
 
        /* followed by SSID and Supported rates; and HT capabilities if 802.11n
@@ -1298,6 +1293,11 @@ static void handle_assoc(struct hostapd_data *hapd,
        /* Station will be marked associated, after it acknowledges AssocResp
         */
 
+       if (reassoc) {
+               os_memcpy(sta->previous_ap, mgmt->u.reassoc_req.current_ap,
+                         ETH_ALEN);
+       }
+
        if (sta->last_assoc_req)
                os_free(sta->last_assoc_req);
        sta->last_assoc_req = os_malloc(len);