提交 bedf0883 编写于 作者: J Julien Brunel 提交者: Greg Kroah-Hartman

USB: drivers/usb/misc: Use an IS_ERR test rather than a NULL test

In case of error, the function backlight_device_register returns an
ERR pointer, but never returns a NULL pointer. So a NULL test that may
come after a call to this function should be strengthened by an IS_ERR
test.

The semantic match that finds this problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@match_bad_null_test@
expression x, E;
statement S1,S2;
@@
x = backlight_device_register(...)
... when != x = E
* if (x != NULL) 
S1 else S2
// </smpl>
Signed-off-by: NJulien Brunel <brunel@diku.dk>
Signed-off-by: NJulia Lawall <julia@diku.dk>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 58209018
...@@ -314,7 +314,7 @@ static int appledisplay_probe(struct usb_interface *iface, ...@@ -314,7 +314,7 @@ static int appledisplay_probe(struct usb_interface *iface,
pdata->urbdata, pdata->urb->transfer_dma); pdata->urbdata, pdata->urb->transfer_dma);
usb_free_urb(pdata->urb); usb_free_urb(pdata->urb);
} }
if (pdata->bd) if (pdata->bd && !IS_ERR(pdata->bd))
backlight_device_unregister(pdata->bd); backlight_device_unregister(pdata->bd);
kfree(pdata->msgdata); kfree(pdata->msgdata);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册