Commit a69d3bdd authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo

ath10k: fix null dereference on pointer crash_data

Currently when pointer crash_data is null the present null check
will also check that crash_data->ramdump_buf is null and will cause
a null pointer dereference on crash_data. Fix this by using the ||
operator instead of &&.

Fixes: 3f14b73c ("ath10k: Enable MSA region dump support for WCN3990")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent cc78dc3b
...@@ -1400,7 +1400,7 @@ static void ath10k_msa_dump_memory(struct ath10k *ar, ...@@ -1400,7 +1400,7 @@ static void ath10k_msa_dump_memory(struct ath10k *ar,
size_t buf_len; size_t buf_len;
u8 *buf; u8 *buf;
if (!crash_data && !crash_data->ramdump_buf) if (!crash_data || !crash_data->ramdump_buf)
return; return;
mem_layout = ath10k_coredump_get_mem_layout(ar); mem_layout = ath10k_coredump_get_mem_layout(ar);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment