ata: pata_platform: Fix a NULL pointer dereference in __pata_platform_probe()
authorZhou Qingyang <zhou1615@umn.edu>
Mon, 24 Jan 2022 16:45:25 +0000 (00:45 +0800)
committerDamien Le Moal <damien.lemoal@opensource.wdc.com>
Thu, 27 Jan 2022 02:22:43 +0000 (11:22 +0900)
commit9b6d90e2085ca2ce72ef9ea78658bf270855e62e
treef79dd7bee1b66542dc25231a861607aa07846e1f
parent0280e3c58f92b2fe0e8fbbdf8d386449168de4a8
ata: pata_platform: Fix a NULL pointer dereference in __pata_platform_probe()

In __pata_platform_probe(), devm_kzalloc() is assigned to ap->ops and
there is a dereference of it right after that, which could introduce a
NULL pointer dereference bug.

Fix this by adding a NULL check of ap->ops.

This bug was found by a static analyzer.

Builds with 'make allyesconfig' show no new warnings,
and our static analyzer no longer warns about this code.

Fixes: f3d5e4f18dba ("ata: pata_of_platform: Allow to use 16-bit wide data transfer")
Signed-off-by: Zhou Qingyang <zhou1615@umn.edu>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
drivers/ata/pata_platform.c