Explorar el Código

qcacld-3.0: Fix bad param passed during QoS Map conversion

In sir_convert_qos_map_configure_frame2_struct() a HDD Handle is being
passed as the first parameter to convert_qos_mapset_frame() which is
expecting a pMac. Change the call to pass the pMac.

Change-Id: I2bbf1bf4a7975e5cb44066b6a3b1a98e82df9fad
CRs-Fixed: 2254955
Jeff Johnson hace 6 años
padre
commit
b8f86ea873
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      core/mac/src/sys/legacy/src/utils/src/parser_api.c

+ 1 - 1
core/mac/src/sys/legacy/src/utils/src/parser_api.c

@@ -4869,7 +4869,7 @@ sir_convert_qos_map_configure_frame2_struct(tpAniSirGlobal pMac,
 			   status, nFrame);
 	}
 	pQosMapSet->present = mapConfigure.QosMapSet.present;
-	convert_qos_mapset_frame(pMac->hHdd, pQosMapSet, &mapConfigure.QosMapSet);
+	convert_qos_mapset_frame(pMac, pQosMapSet, &mapConfigure.QosMapSet);
 	lim_log_qos_map_set(pMac, pQosMapSet);
 	return eSIR_SUCCESS;
 }