浏览代码

ASoC: wcd-mbhc: Fix null pointer dereference for mbhc

IRQ data pointer is corrupted due to slimbus NGD errors.
This may happen as IRQ will be received from slimbus.
Check for mbhc null pointer before dereferencing to avoid crash.

Change-Id: I142ee535c6d643b53063b57c0f45414aff8b6304
Signed-off-by: Vatsal Bucha <[email protected]>
Vatsal Bucha 5 年之前
父节点
当前提交
fc40b33b24
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      asoc/codecs/wcd-mbhc-v2.c

+ 4 - 0
asoc/codecs/wcd-mbhc-v2.c

@@ -1055,6 +1055,10 @@ static irqreturn_t wcd_mbhc_mech_plug_detect_irq(int irq, void *data)
 	struct wcd_mbhc *mbhc = data;
 
 	pr_debug("%s: enter\n", __func__);
+	if (mbhc == NULL) {
+		pr_err("%s: NULL irq data\n", __func__);
+		return IRQ_NONE;
+	}
 	if (unlikely((mbhc->mbhc_cb->lock_sleep(mbhc, true)) == false)) {
 		pr_warn("%s: failed to hold suspend\n", __func__);
 		r = IRQ_NONE;