From: Dan Carpenter Date: Fri, 9 May 2014 11:59:16 +0000 (+0300) Subject: applicom: dereferencing NULL on error path X-Git-Tag: v3.14.10~98 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af671dd21da6751d7f0512e19facac4e36d74d8c;p=profile%2Fcommon%2Fkernel-common.git applicom: dereferencing NULL on error path commit 8bab797c6e5724a43b7666ad70860712365cdb71 upstream. This is a static checker fix. The "dev" variable is always NULL after the while statement so we would be dereferencing a NULL pointer here. Fixes: 819a3eba4233 ('[PATCH] applicom: fix error handling') Signed-off-by: Dan Carpenter Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/applicom.c b/drivers/char/applicom.c index 974321a..1479030 100644 --- a/drivers/char/applicom.c +++ b/drivers/char/applicom.c @@ -345,7 +345,6 @@ out: free_irq(apbs[i].irq, &dummy); iounmap(apbs[i].RamIO); } - pci_disable_device(dev); return ret; }