mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 21:15:53 +02:00
mtd: maps: sa1100-flash: potential NULL dereference
commitdc01a28d80upstream. We check for NULL but then dereference "info->mtd" on the next line. Fixes:72169755cf('mtd: maps: sa1100-flash: show parent device in sysfs') Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3f5d8326a8
commit
4598783830
|
|
@ -230,8 +230,10 @@ static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev,
|
|||
|
||||
info->mtd = mtd_concat_create(cdev, info->num_subdev,
|
||||
plat->name);
|
||||
if (info->mtd == NULL)
|
||||
if (info->mtd == NULL) {
|
||||
ret = -ENXIO;
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
info->mtd->dev.parent = &pdev->dev;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user