]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mtd: docg3: dereferencing an ERR_PTR() in docg3_probe()
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 28 Nov 2011 13:53:13 +0000 (16:53 +0300)
committerArtem Bityutskiy <Artem.Bityutskiy@linux.intel.com>
Thu, 8 Dec 2011 21:49:56 +0000 (23:49 +0200)
commit81fe3daa236a1fac8a3879e05f04affe870b4588
treece02d4751056598e879b176c20bf02e99c70980e
parent4741990ba44f8d5c803bcbffb207308e8b2c9ff5
mtd: docg3: dereferencing an ERR_PTR() in docg3_probe()

If doc_probe_device() returned an ERR_PTR, then we accidentally saved
that to docg3_floors[floor] = mtd; which gets derefenced in the error
handling when we call doc_release_device().

I've reworked the error handling to take care of that and hopefully
make it a little simpler.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@linux.intel.com>
drivers/mtd/devices/docg3.c