From: Samuel Iglesias Gonsalvez Date: Wed, 23 May 2012 13:54:44 +0000 (+0200) Subject: Staging: ipack/bridges/tpci200: check if the remove function is available X-Git-Tag: v3.6-rc1~100^2~910 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=786d986ea25632e3d8e7ad5ac2780861ff2b654f;p=platform%2Fkernel%2Flinux-3.10.git Staging: ipack/bridges/tpci200: check if the remove function is available To avoid a dereference of a NULL pointer, the availability of the function is checked before its use. Signed-off-by: Samuel Iglesias Gonsalvez Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ipack/bridges/tpci200.c b/drivers/staging/ipack/bridges/tpci200.c index 0c2a50a..ee26d9a 100644 --- a/drivers/staging/ipack/bridges/tpci200.c +++ b/drivers/staging/ipack/bridges/tpci200.c @@ -764,6 +764,8 @@ out: static void tpci200_slot_remove(struct tpci200_slot *slot) { if ((slot->dev == NULL) || + (slot->dev->driver == NULL) || + (slot->dev->driver->ops == NULL) || (slot->dev->driver->ops->remove == NULL)) return;