[X25]: Add missing x25_neigh_put

The function x25_get_neigh increments a reference count. At the point of
the second goto out, the result of calling x25_get_neigh is only stored in
a local variable, and thus no one outside the function will be able to
decrease the reference count. Thus, x25_neigh_put should be called before
the return in this case.

The problem was found using the following semantic match.
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>

@@
type T,T1,T2;
identifier E;
statement S;
expression x1,x2,x3;
int ret;
@@

T E;
...
* if ((E = x25_get_neigh(...)) == NULL)
S
... when != x25_neigh_put(...,(T1)E,...)
when != if (E != NULL) { ... x25_neigh_put(...,(T1)E,...); ...}
when != x1 = (T1)E
when != E = x3;
when any
if (...) {
... when != x25_neigh_put(...,(T2)E,...)
when != if (E != NULL) { ... x25_neigh_put(...,(T2)E,...); ...}
when != x2 = (T2)E
(
* return;
|
* return ret;
)
}
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Julia Lawall and committed by David S. Miller 76975f8a 304b4699

+3 -2
+3 -2
net/x25/x25_forward.c
··· 118 118 goto out; 119 119 120 120 if ( (skbn = pskb_copy(skb, GFP_ATOMIC)) == NULL){ 121 - goto out; 121 + goto output; 122 122 123 123 } 124 124 x25_transmit_link(skbn, nb); 125 125 126 - x25_neigh_put(nb); 127 126 rc = 1; 127 + output: 128 + x25_neigh_put(nb); 128 129 out: 129 130 return rc; 130 131 }