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

Commit a22921e7 authored by Pragaspathi Thilagaraj's avatar Pragaspathi Thilagaraj Committed by snandini
Browse files

qcacld-3.0: Fix null pointer dereference of profile

In csr_issue_set_context_req_helper() profile is dereferenced
to get the encryption type.

Add null check before accessing the profile pointer.

Change-Id: I40c148648130918f9da0194ff6e132d55b113008
CRs-Fixed: 2777778
parent d7429448
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -11521,7 +11521,8 @@ csr_issue_set_context_req_helper(struct mac_context *mac_ctx,
	 * For open mode authentication, send dummy install key response to
	 * send OBSS scan and QOS event.
	 */
	if (profile->negotiatedUCEncryptionType == eCSR_ENCRYPT_TYPE_NONE) {
	if (profile &&
	    profile->negotiatedUCEncryptionType == eCSR_ENCRYPT_TYPE_NONE) {
		if (unicast)
			return QDF_STATUS_SUCCESS;