OSDN Git Service

drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init()
authorHui Tang <tanghui20@huawei.com>
Sat, 19 Nov 2022 05:55:18 +0000 (13:55 +0800)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Sun, 8 Jan 2023 20:18:46 +0000 (22:18 +0200)
commit21e9a838f505178e109ccb3bf19d7808eb0326f4
treed40615ee2661691d382ea56901f8c35ff1d033bc
parenta685d27f220118bb770e2c1a9a50dcc100309e63
drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init()

Because of the possilble failure of devm_kzalloc(), dpu_wb_conn might
be NULL and will cause null pointer dereference later.

Therefore, it might be better to check it and directly return -ENOMEM.

Fixes: 77b001acdcfe ("drm/msm/dpu: add the writeback connector layer")
Signed-off-by: Hui Tang <tanghui20@huawei.com>
Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
Patchwork: https://patchwork.freedesktop.org/patch/512277/
Link: https://lore.kernel.org/r/20221119055518.179937-1-tanghui20@huawei.com
[DB: fixed typo in commit message]
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
drivers/gpu/drm/msm/disp/dpu1/dpu_writeback.c