Ver Fonte

qcacld-3.0: Fix number of bytes when copying mac addr

When copying mac addr, the number of bytes should be six.

Change-Id: I077419a34253f26d1f04fc27bfbca3f4d7ed4b1a
CRs-Fixed: 3007559
bings há 3 anos atrás
pai
commit
c6dc101eb7
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      core/mac/src/pe/lim/lim_process_assoc_req_frame.c

+ 2 - 2
core/mac/src/pe/lim/lim_process_assoc_req_frame.c

@@ -2122,8 +2122,8 @@ static void lim_defer_sme_indication(struct mac_context *mac_ctx,
 
 	sta_pre_auth_ctx->assoc_req.present = true;
 	sta_pre_auth_ctx->assoc_req.sub_type = sub_type;
-	qdf_mem_copy(&sta_pre_auth_ctx->assoc_req.sa, sa,
-		     sizeof(tSirMacMgmtHdr));
+	qdf_mem_copy(sta_pre_auth_ctx->assoc_req.sa, sa,
+		     sizeof(sta_pre_auth_ctx->assoc_req.sa));
 	sta_pre_auth_ctx->assoc_req.assoc_req = assoc_req;
 	sta_pre_auth_ctx->assoc_req.pmf_connection = pmf_connection;
 	sta_pre_auth_ctx->assoc_req.assoc_req_copied = assoc_req_copied;