OSDN Git Service

mtd: rawnand: vf610: Avoid a potential NULL pointer dereference
authorAditya Pakki <pakki001@umn.edu>
Mon, 18 Mar 2019 23:24:34 +0000 (18:24 -0500)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Mon, 8 Apr 2019 08:21:07 +0000 (10:21 +0200)
of_match_device can return NULL if there is no matching device. Avoid
a potential NULL pointer dereference by checking for the return value
and passing the error upstream.

Signed-off-by: Aditya Pakki <pakki001@umn.edu>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/nand/raw/vf610_nfc.c

index a662ca1..6d43ddb 100644 (file)
@@ -850,6 +850,9 @@ static int vf610_nfc_probe(struct platform_device *pdev)
        }
 
        of_id = of_match_device(vf610_nfc_dt_ids, &pdev->dev);
+       if (!of_id)
+               return -ENODEV;
+
        nfc->variant = (enum vf610_nfc_variant)of_id->data;
 
        for_each_available_child_of_node(nfc->dev->of_node, child) {