qcacmn: Add NULL check for 'pl_dev'

Currently 'pl_dev' is dereferenced without check for NULL in
get_pktlog_handle function in pktlog_internal.c

To address this issue add NULL check before dereferencing

Change-Id: Ic258db7bf1b404ff4f2d6c18abe775335074268b
CRs-Fixed: 2196058
This commit is contained in:
jitiphil
2018-03-21 21:02:01 +05:30
committed by nshrivas
parent 269c3deaac
commit 3caf63aa26

View File

@@ -370,7 +370,12 @@ A_STATUS process_tx_info(struct cdp_pdev *txrx_pdev, void *data)
return A_ERROR;
}
qdf_assert(pl_dev);
if (!pl_dev) {
pr_err("Invalid pktlog handle in %s\n", __func__);
qdf_assert(pl_dev);
return A_ERROR;
}
qdf_assert(data);
fw_data = (struct ol_fw_data *)data;