Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2507136f authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

net/llc: storing negative error codes in unsigned short



If the alloc_skb() fails then we return 65431 instead of -ENOBUFS
(-105).

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e443e383
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -689,7 +689,7 @@ static void llc_station_rcv(struct sk_buff *skb)

int __init llc_station_init(void)
{
	u16 rc = -ENOBUFS;
	int rc = -ENOBUFS;
	struct sk_buff *skb;
	struct llc_station_state_ev *ev;