Tag: b9556f9a1abdc56a179ac7ba6053469373b6de0f

drivers/atm/atmtcp.c: add missing atm_dev_put

Author: Julia Lawall <julia@diku.dk> The earlier call to atm_dev_lookup increases the reference count of dev, so decrease it on the way out. The semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression x, E; constant C; @@ x = atm_dev_lookup(…); … when != false x != NULL when != true x …

Continue reading