|
@@ -2226,6 +2226,12 @@ int wma_roam_synch_event_handler(void *handle, uint8_t *event,
|
|
|
goto cleanup_label;
|
|
|
}
|
|
|
|
|
|
+ if (synch_event->vdev_id >= wma->max_bssid) {
|
|
|
+ WMA_LOGE("%s: received invalid vdev_id %d",
|
|
|
+ __func__, synch_event->vdev_id);
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
if (synch_event->bcn_probe_rsp_len >
|
|
|
param_buf->num_bcn_probe_rsp_frame ||
|
|
|
synch_event->reassoc_req_len >
|
|
@@ -2238,11 +2244,6 @@ int wma_roam_synch_event_handler(void *handle, uint8_t *event,
|
|
|
synch_event->reassoc_rsp_len);
|
|
|
goto cleanup_label;
|
|
|
}
|
|
|
- if (synch_event->vdev_id >= wma->max_bssid) {
|
|
|
- WMA_LOGE("%s: received invalid vdev_id %d",
|
|
|
- __func__, synch_event->vdev_id);
|
|
|
- goto cleanup_label;
|
|
|
- }
|
|
|
|
|
|
wlan_roam_debug_log(synch_event->vdev_id, DEBUG_ROAM_SYNCH_IND,
|
|
|
DEBUG_INVALID_PEER_ID, NULL, NULL,
|