Tag: d93089df1b752e4da048cd7f4749d29120b65e55

drivers/staging/ath6kl/os/linux/cfg80211.c: Add missing call to cfg80211_put_bss

Author: Julia Lawall <julia@diku.dk> A call to cfg80211_get_bss hould be accompanied by a call to cfg80211_put_bss in error-handling code. A simplified version of the semantic match that finds this problem is: (http://coccinelle.lip6.fr/) // @r exists@ local idexpression struct cfg80211_bss * x; expression ra,rr; position p1,p2; @@ x = cfg80211_get_bss@p1(…) … when != x = rr …

Continue reading